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 0dd91d8 commit 8e3dc35Copy full SHA for 8e3dc35
.circleci/config.yml
@@ -13,13 +13,20 @@ defaults: &defaults
13
- run:
14
name: Test
15
command: |
16
- pytest -n 2 --dist loadscope --cov=galgebra --nbval examples/ipython/ test --current-env --sanitize-with test/.nbval_sanitize.cfg
+ mkdir test-reports
17
+ pytest -n 2 --dist loadscope --cov=galgebra --nbval examples/ipython/ test --current-env --sanitize-with test/.nbval_sanitize.cfg --junitxml=test-reports/junit.xml
18
19
name: Coverage
20
when: on_success
21
22
sudo pip install codecov
23
codecov
24
+
25
+ - store_test_results:
26
+ path: test-reports
27
+ - store_artifacts:
28
29
30
jobs:
31
"python-3.7":
32
<<: *defaults
0 commit comments