aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/test_all.py
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2014-12-15 12:47:51 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-12-15 12:47:52 -0800
commit9a0d6d6c88b87b3d0195e5633403325b6e922b8c (patch)
tree108a90d3bcb39ff86f388f2aa12c4cab9232e310 /tools/test_all.py
parent54160f32865e8bbba18c9a1eb6e46711c8233cdf (diff)
skimage, die die die
DM's running with --images on all the bots now. They look happy. BUG=skia:3235 Review URL: https://codereview.chromium.org/804133003
Diffstat (limited to 'tools/test_all.py')
-rwxr-xr-xtools/test_all.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/test_all.py b/tools/test_all.py
index 6467a2160b..282ec85732 100755
--- a/tools/test_all.py
+++ b/tools/test_all.py
@@ -12,15 +12,8 @@ Run all unittests within this directory tree, recursing into subdirectories.
import os
import unittest
-from tests import skimage_self_test
-
def main():
- # First, run any tests that cannot be automatically discovered (because
- # they don't use Python's unittest framework).
- skimage_self_test.main()
-
- # Now discover/run all tests that use Python's unittest framework.
suite = unittest.TestLoader().discover(os.path.dirname(__file__),
pattern='*_test.py')
results = unittest.TextTestRunner(verbosity=2).run(suite)