We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 425552b commit ad8582cCopy full SHA for ad8582c
.circleci/config.yml
@@ -16,11 +16,14 @@ jobs:
16
name: run tests
17
command: |
18
. venv/bin/activate
19
- pytest -v -s --cov=crypto --cov-config=.coveragerc --cov-report xml
+ mkdir test-results
20
+ pytest -v -s --junitxml=test-reports/junit.xml --cov=crypto --cov-config=.coveragerc --cov-report xml
21
- run:
22
name: Codecov
23
when: on_success
24
command: bash <(curl -s https://codecov.io/bash)
25
+ - store_test_results:
26
+ path: test-results
27
- store_artifacts:
28
path: test-reports
29
destination: test-reports
0 commit comments