Skip to content

Commit 6962797

Browse files
author
Trygve Aspenes
committed
updated to conda-forge
1 parent f709bfc commit 6962797

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/pytest.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,14 @@ jobs:
3232
- name: Update environment
3333
run: mamba env update -n test-environment -f continuous_integration/environment.yaml
3434
if: steps.cache.outputs.cache-hit != 'true'
35-
35+
- name: Run unit tests
36+
shell: bash -l {0}
37+
run: |
38+
ls -al;
39+
pwd;
40+
python -v
3641
- name: Run Tests
37-
run: python3 -m pytest -v --cov=./ --cov-report=xml --timeout=60
42+
run: pytest -v --cov=./ --cov-report=xml --timeout=60
3843
- name: Upload to Codecov
3944
uses: codecov/codecov-action@v2
4045
with:

0 commit comments

Comments
 (0)