From 980ddea6ac3ca2f2d5cef72a739a95ae6d753bc2 Mon Sep 17 00:00:00 2001 From: Thomi Richards Date: Mon, 18 Nov 2013 11:25:19 +1300 Subject: Added empty test module to test suite. --- python/subunit/tests/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'python/subunit/tests/__init__.py') diff --git a/python/subunit/tests/__init__.py b/python/subunit/tests/__init__.py index a3caa38..c9cc7ae 100644 --- a/python/subunit/tests/__init__.py +++ b/python/subunit/tests/__init__.py @@ -6,7 +6,7 @@ # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one of these two licences. -# +# # Unless required by applicable law or agreed to in writing, software # distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the @@ -20,6 +20,7 @@ from subunit.tests import ( test_chunked, test_details, test_filters, + test_output_filter, test_progress_model, test_run, test_subunit_filter, @@ -45,4 +46,5 @@ def test_suite(): result.addTest(loader.loadTestsFromModule(test_subunit_tags)) result.addTest(loader.loadTestsFromModule(test_subunit_stats)) result.addTest(loader.loadTestsFromModule(test_run)) + result.addTest(loader.loadTestsFromModule(test_output_filter)) return result -- cgit v1.2.1