diff options
| author | Robert Collins <robertc@robertcollins.net> | 2010-11-30 13:52:18 +1300 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2010-11-30 13:52:18 +1300 |
| commit | 193441ebd6c8786e106a1214711f1350bf3585f2 (patch) | |
| tree | de78a5519521506d41e84f9fb93c748175293314 /python | |
| parent | 7ca86894da7c3f810a412f8cf1d9650866852654 (diff) | |
| download | subunit-git-193441ebd6c8786e106a1214711f1350bf3585f2.tar.gz | |
The Subunit Python test runner ``python -m subunit.run`` can now report the
test ids and also filter via a test id list file thanks to improvements in
``testtools.run``. See the testtools manual, or testrepository - a major
user of such functionality.
Diffstat (limited to 'python')
| -rwxr-xr-x | python/subunit/run.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/subunit/run.py b/python/subunit/run.py index daa241a..b390de3 100755 --- a/python/subunit/run.py +++ b/python/subunit/run.py @@ -69,4 +69,5 @@ class SubunitTestProgram(TestProgram): if __name__ == '__main__': stream = get_default_formatter() runner = SubunitTestRunner(stream) - SubunitTestProgram(module=None, argv=sys.argv, testRunner=runner) + SubunitTestProgram(module=None, argv=sys.argv, testRunner=runner, + stdout=sys.stdout) |
