unit tests

This commit is contained in:
klemek
2020-04-27 16:26:27 +02:00
parent 1d05f87a5f
commit 459b87a020
6 changed files with 12 additions and 0 deletions
+11
View File
@@ -22,8 +22,19 @@ jobs:
git diff-index --quiet HEAD || git commit -m 'Automated README [ci skip]' git diff-index --quiet HEAD || git commit -m 'Automated README [ci skip]'
git push origin master git push origin master
name: Building docs name: Building docs
unit-tests:
docker:
- image: circleci/python:latest
steps:
- checkout
- run:
command: |
sudo pip install pytest
python -m pytest ./tests/unit
name: Unit tests
workflows: workflows:
main: main:
jobs: jobs:
- unit-tests
- build-docs - build-docs
+1
View File
@@ -5,3 +5,4 @@ error_*.txt
tmp tmp
.key* .key*
*.pyc *.pyc
.pytest_cache
View File
View File
View File