summaryrefslogtreecommitdiff
path: root/python/subunit/tests/__init__.py
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2013-08-25 22:38:56 +1200
committerRobert Collins <robertc@robertcollins.net>2013-08-25 22:38:56 +1200
commitd89b53bdce42ffe4b91e66c9abeb2458d48361bb (patch)
tree0a24acb7d7049a0317cc614a654d1985755327e6 /python/subunit/tests/__init__.py
parent95e08395d95f1b934b4a4a78f79984618e95de8a (diff)
downloadsubunit-git-d89b53bdce42ffe4b91e66c9abeb2458d48361bb.tar.gz
* Most filters will now accept a file path argument instead of only reading
from stdin. (Robert Collins, #409206)
Diffstat (limited to 'python/subunit/tests/__init__.py')
-rw-r--r--python/subunit/tests/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/subunit/tests/__init__.py b/python/subunit/tests/__init__.py
index 3552eff..a3caa38 100644
--- a/python/subunit/tests/__init__.py
+++ b/python/subunit/tests/__init__.py
@@ -19,6 +19,7 @@ from unittest import TestLoader
from subunit.tests import (
test_chunked,
test_details,
+ test_filters,
test_progress_model,
test_run,
test_subunit_filter,
@@ -34,6 +35,7 @@ def test_suite():
loader = TestLoader()
result = loader.loadTestsFromModule(test_chunked)
result.addTest(loader.loadTestsFromModule(test_details))
+ result.addTest(loader.loadTestsFromModule(test_filters))
result.addTest(loader.loadTestsFromModule(test_progress_model))
result.addTest(loader.loadTestsFromModule(test_test_results))
result.addTest(loader.loadTestsFromModule(test_test_protocol))