test-reports into circleci

This commit is contained in:
simojenki
2019-09-12 15:57:45 +10:00
parent c27f0dce2e
commit 4f7bedb3b4
3 changed files with 6 additions and 4 deletions

View File

@@ -47,8 +47,9 @@ jobs:
- run: - run:
name: run tests name: run tests
command: | command: |
. venv/bin/activate . venv/bin/activate\
py.test mkdir test-reports
pytest --junitxml=test-reports/junit.xml
- store_artifacts: - store_artifacts:
path: test-reports path: test-reports

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.pytest_cache .pytest_cache
.vscode .vscode
__pycache__ __pycache__
test-reports

View File

@@ -1,3 +1,3 @@
pytest==5.0.1 pytest==5.0.1
pytest-html