summaryrefslogtreecommitdiff
path: root/silx/utils/test/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/utils/test/__init__.py')
-rw-r--r--silx/utils/test/__init__.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/silx/utils/test/__init__.py b/silx/utils/test/__init__.py
index f16cbdc..029523c 100644
--- a/silx/utils/test/__init__.py
+++ b/silx/utils/test/__init__.py
@@ -1,7 +1,7 @@
# coding: utf-8
# /*##########################################################################
#
-# Copyright (c) 2016 European Synchrotron Radiation Facility
+# Copyright (c) 2016-2019 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@
# ###########################################################################*/
__authors__ = ["T. Vincent", "P. Knobel"]
__license__ = "MIT"
-__date__ = "24/05/2018"
+__date__ = "08/03/2019"
import unittest
@@ -36,6 +36,8 @@ from . import test_deprecation
from . import test_proxy
from . import test_debug
from . import test_number
+from . import test_external_resources
+from . import test_enum
def suite():
@@ -48,4 +50,6 @@ def suite():
test_suite.addTest(test_proxy.suite())
test_suite.addTest(test_debug.suite())
test_suite.addTest(test_number.suite())
+ test_suite.addTest(test_external_resources.suite())
+ test_suite.addTest(test_enum.suite())
return test_suite