We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17736cc commit 29db4a0Copy full SHA for 29db4a0
2 files changed
.github/workflows/build.yml
@@ -24,7 +24,6 @@ jobs:
24
pip install .[dev]
25
- name: Test
26
run: |
27
- pytest -n auto -x -rA --cov=./ --cov-report xml
28
- - uses: actions/checkout@v2
+ sh tests/run_basics.sh
29
- name: Codecov
30
- uses: codecov/codecov-action@v2
+ uses: codecov/codecov-action@v1
tests/run_basics.sh
@@ -0,0 +1,2 @@
1
+#!/usr/bin/env bash
2
+pytest -n auto -x -rA --cov=./ --cov-report xml
0 commit comments