Commit 465645c2 authored by Tres Seaver's avatar Tres Seaver

Run all tests by default in 'setup.py test'.

parent 7f5dda11
...@@ -220,7 +220,7 @@ def alltests(): ...@@ -220,7 +220,7 @@ def alltests():
here = os.path.abspath(os.path.dirname(sys.argv[0])) here = os.path.abspath(os.path.dirname(sys.argv[0]))
args = sys.argv[:] args = sys.argv[:]
src = os.path.join(here, 'src') src = os.path.join(here, 'src')
defaults = ['--test-path', src] defaults = ['--test-path', src, '--all']
options = get_options(args, defaults) options = get_options(args, defaults)
suites = list(find_suites(options)) suites = list(find_suites(options))
return TestSuite(suites) return TestSuite(suites)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment