From d89b53bdce42ffe4b91e66c9abeb2458d48361bb Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Sun, 25 Aug 2013 22:38:56 +1200 Subject: * Most filters will now accept a file path argument instead of only reading from stdin. (Robert Collins, #409206) --- python/subunit/tests/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python/subunit/tests/__init__.py') 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)) -- cgit v1.2.1