Pass command args into nose unit test runner from tests/run.py

This allows developers to selectively run tests, to enable debugging
on test failures, etc. See
http://nose.readthedocs.io/en/latest/usage.html for usage
instructions.
This commit is contained in:
Andrew Lyjak
2016-08-16 01:49:07 -07:00
parent b03b7e543f
commit 47a3e3dfd3

View File

@@ -48,4 +48,4 @@ tempdir.makedirs()
print('Running Sphinx test suite (with Python %s)...' % sys.version.split()[0])
sys.stdout.flush()
nose.main()
nose.main(argv=sys.argv)