summaryrefslogtreecommitdiff
path: root/silx/image/test/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/image/test/__init__.py')
-rw-r--r--silx/image/test/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/silx/image/test/__init__.py b/silx/image/test/__init__.py
index 4c5a2e9..db99c2f 100644
--- a/silx/image/test/__init__.py
+++ b/silx/image/test/__init__.py
@@ -3,7 +3,7 @@
# Project: silx
# https://github.com/silx-kit/silx
#
-# Copyright (C) 2012-2016 European Synchrotron Radiation Facility, Grenoble, France
+# Copyright (C) 2012-2018 European Synchrotron Radiation Facility, Grenoble, France
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -25,13 +25,14 @@
__authors__ = ["J. Kieffer"]
__license__ = "MIT"
-__date__ = "25/08/2016"
+__date__ = "17/04/2018"
import unittest
from . import test_bilinear
from . import test_shapes
from . import test_medianfilter
from . import test_tomography
+from ..marchingsquares.test import suite as marchingsquares_suite
def suite():
@@ -41,4 +42,5 @@ def suite():
test_suite.addTest(test_medianfilter.suite())
test_suite.addTest(test_shapes.suite())
test_suite.addTest(test_tomography.suite())
+ test_suite.addTest(marchingsquares_suite())
return test_suite