summaryrefslogtreecommitdiffstats
path: root/tests/run-tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-tests.py')
-rw-r--r--tests/run-tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
new file mode 100644
index 0000000..5e6bfe7
--- /dev/null
+++ b/tests/run-tests.py
@@ -0,0 +1,6 @@
+#!/usr/bin/env python3
+
+import subprocess
+
+# Run all tests in folder units.
+subprocess.run('python3 -m unittest discover -s units -v', shell=True)