summaryrefslogtreecommitdiffstats
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authorRoberto Hueso Gómez <rhueso@soleta.eu>2020-01-16 11:33:26 +0100
committerAlvaro Neira Ayuso <alvaroneay@gmail.com>2020-01-19 19:50:44 +0100
commitbb65bd7bf03da7ad5a9ae25d6caab57d06211b99 (patch)
tree03f12a9e7b8e12a4ff3ea9efa20969ac0b693935 /tests/run-tests.py
parent0c5cbee301db4be515fd9224f93c026857976488 (diff)
Add unit testing basic structure
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)