We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f709bfc commit 6962797Copy full SHA for 6962797
.github/workflows/pytest.yml
@@ -32,9 +32,14 @@ jobs:
32
- name: Update environment
33
run: mamba env update -n test-environment -f continuous_integration/environment.yaml
34
if: steps.cache.outputs.cache-hit != 'true'
35
-
+ - name: Run unit tests
36
+ shell: bash -l {0}
37
+ run: |
38
+ ls -al;
39
+ pwd;
40
+ python -v
41
- name: Run Tests
- run: python3 -m pytest -v --cov=./ --cov-report=xml --timeout=60
42
+ run: pytest -v --cov=./ --cov-report=xml --timeout=60
43
- name: Upload to Codecov
44
uses: codecov/codecov-action@v2
45
with:
0 commit comments