diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-24 18:57:05 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-24 18:57:05 (GMT) |
commit | 576483085c7357130afba7f605db431df255ec74 (patch) | |
tree | ca4f7809d7476088594b9336bce372463ba164c7 /Lib/test/regrtest.py | |
parent | b588f8dd9fcd4881659b1037f92e433d3fb6c29c (diff) | |
download | cpython-576483085c7357130afba7f605db431df255ec74.zip cpython-576483085c7357130afba7f605db431df255ec74.tar.gz cpython-576483085c7357130afba7f605db431df255ec74.tar.bz2 |
#11093: make NOTTESTS empty by renaming confusingly named files in test dir.
Patch by Sandro Tosi.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index ca9e9f4..f6cf0a7 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -743,10 +743,7 @@ STDTESTS = [ ] # set of tests that we don't want to be executed when using regrtest -NOTTESTS = { - 'test_future1', - 'test_future2', -} +NOTTESTS = set() def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS): """Return a list of all applicable test modules.""" |