diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-01-16 11:33:26 +0100 |
---|---|---|
committer | Alvaro Neira Ayuso <alvaroneay@gmail.com> | 2020-01-19 19:50:44 +0100 |
commit | bb65bd7bf03da7ad5a9ae25d6caab57d06211b99 (patch) | |
tree | 03f12a9e7b8e12a4ff3ea9efa20969ac0b693935 /tests/run-tests.py | |
parent | 0c5cbee301db4be515fd9224f93c026857976488 (diff) |
Add unit testing basic structure
Diffstat (limited to 'tests/run-tests.py')
-rw-r--r-- | tests/run-tests.py | 6 |
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) |