Skip to content

Commit ad8582c

Browse files
datedfaustbrian
authored andcommitted
chore: store test results (#60)
1 parent 425552b commit ad8582c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@ jobs:
1616
name: run tests
1717
command: |
1818
. venv/bin/activate
19-
pytest -v -s --cov=crypto --cov-config=.coveragerc --cov-report xml
19+
mkdir test-results
20+
pytest -v -s --junitxml=test-reports/junit.xml --cov=crypto --cov-config=.coveragerc --cov-report xml
2021
- run:
2122
name: Codecov
2223
when: on_success
2324
command: bash <(curl -s https://codecov.io/bash)
25+
- store_test_results:
26+
path: test-results
2427
- store_artifacts:
2528
path: test-reports
2629
destination: test-reports

0 commit comments

Comments
 (0)