From 5332f4541acaf9fe6f16b7828c78d3c55e5ea35b Mon Sep 17 00:00:00 2001 From: Olivier Guilyardi Date: Fri, 19 Feb 2010 17:42:46 +0000 Subject: [PATCH] add a script to run all unit tests at once --- tests/alltests.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tests/alltests.py diff --git a/tests/alltests.py b/tests/alltests.py new file mode 100644 index 0000000..e368939 --- /dev/null +++ b/tests/alltests.py @@ -0,0 +1,5 @@ +from timeside.tests.testcomponent import * +from timeside.tests.testinputadapter import * +from timeside.tests import TestRunner + +unittest.main(testRunner=TestRunner()) -- 2.39.5