From: Michael Orlitzky Date: Wed, 18 Sep 2024 00:22:02 +0000 (-0400) Subject: test: delete the now-unused setuptools test suite runner X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=f4c0fbb2fce38df842c05f0e178b7fff42b675f3;p=djbdns-logparse.git test: delete the now-unused setuptools test suite runner --- diff --git a/test/__init__.py b/test/__init__.py deleted file mode 100644 index 8c5ac13..0000000 --- a/test/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -def build_suite(): - from doctest import DocTestSuite - from unittest import TestSuite - import djbdns.common - import djbdns.dnscache - import djbdns.io - import djbdns.tinydns - - tests = TestSuite() - tests.addTests(DocTestSuite(djbdns.common)) - tests.addTests(DocTestSuite(djbdns.dnscache)) - tests.addTests(DocTestSuite(djbdns.io)) - tests.addTests(DocTestSuite(djbdns.tinydns)) - - return tests