From c36d1cf248f5729445e458450b157cdfb501ac2e Mon Sep 17 00:00:00 2001 From: Matt Terry Date: Thu, 25 Jul 2013 15:28:29 -0700 Subject: [PATCH] run_module_suite --- skimage/color/tests/test_delta_e.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/skimage/color/tests/test_delta_e.py b/skimage/color/tests/test_delta_e.py index 1bfcc4d0..4535a311 100644 --- a/skimage/color/tests/test_delta_e.py +++ b/skimage/color/tests/test_delta_e.py @@ -136,3 +136,8 @@ def test_cmc(): ]) assert_allclose(dE2, oracle, rtol=1.e-8) + + +if __name__ == "__main__": + from numpy.testing import run_module_suite + run_module_suite()