diff options
author | cookedm <cookedm@localhost> | 2007-04-17 04:54:49 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-04-17 04:54:49 +0000 |
commit | 461565d36e93f59583e9425ffb277023b34ed7a9 (patch) | |
tree | 40a466fa6c409383a378fc005fcc71f773ebc5bb /numpy/testing/numpytest.py | |
parent | f13e90581906086b97f2df480f513a2f3f779354 (diff) | |
download | numpy-461565d36e93f59583e9425ffb277023b34ed7a9.tar.gz |
Sort module names when running tests
Diffstat (limited to 'numpy/testing/numpytest.py')
-rw-r--r-- | numpy/testing/numpytest.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/testing/numpytest.py b/numpy/testing/numpytest.py index 6a8b39e6e..eff1d5d95 100644 --- a/numpy/testing/numpytest.py +++ b/numpy/testing/numpytest.py @@ -453,7 +453,10 @@ class NumpyTest: continue if os.path.basename(os.path.dirname(module.__file__))=='tests': continue - modules.append(module) + modules.append((name, module)) + + modules.sort() + modules = [m[1] for m in modules] self.test_files = [] suites = [] |