summaryrefslogtreecommitdiff
path: root/python/subunit/tests/__init__.py
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2008-12-08 18:02:15 +1100
committerRobert Collins <robertc@robertcollins.net>2008-12-08 18:02:15 +1100
commit0ed5a16cc89aef319cfc2d4bb66c1ac1ced10f5f (patch)
treeaacbc7251c1446466c3d33e5d2c25524fb7de070 /python/subunit/tests/__init__.py
parent852b598c58186f44178fa78f80f54faf98168101 (diff)
downloadsubunit-git-0ed5a16cc89aef319cfc2d4bb66c1ac1ced10f5f.tar.gz
Add subunit-tags to alter the tags on a test stream.
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 7f501c7..6703514 100644
--- a/python/subunit/tests/__init__.py
+++ b/python/subunit/tests/__init__.py
@@ -19,6 +19,7 @@
from subunit.tests import (
TestUtil,
+ test_subunit_tags,
test_tap2subunit,
test_test_protocol,
)
@@ -27,4 +28,5 @@ def test_suite():
result = TestUtil.TestSuite()
result.addTest(test_test_protocol.test_suite())
result.addTest(test_tap2subunit.test_suite())
+ result.addTest(test_subunit_tags.test_suite())
return result