From cbb9f2c3622ec96caf4ec9e58e84c8fbd3f45d23 Mon Sep 17 00:00:00 2001 From: romangraef Date: Fri, 6 Jul 2018 10:35:54 +0200 Subject: Initial commit --- tests/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/__init__.py (limited to 'tests/__init__.py') diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e8b0db2 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,7 @@ +import unittest + + +def all_tests(): + test_loader = unittest.TestLoader() + test_suite = test_loader.discover('tests', pattern='test_*.py') + return test_suite -- cgit