Add unit tests to CI

This commit is contained in:
Stephane Bruckert 2020-02-02 14:14:41 +00:00
parent e8928a47a7
commit 0bd62c9118

View File

@ -21,3 +21,7 @@ jobs:
run: | run: |
pip install flake8 pip install flake8
flake8 . --count --show-source --statistics flake8 . --count --show-source --statistics
- name: Run unit tests
run: |
pip install unittest
python -m unittest discover -v tests/unit