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 5d31928 commit 3aa33d2Copy full SHA for 3aa33d2
.github/workflows/github-actions-demo.yml
@@ -63,9 +63,13 @@ jobs:
63
run: |
64
# $CONDA is an environment variable pointing to the root of the miniconda directory
65
echo $CONDA/bin >> $GITHUB_PATH
66
+ - name: DEBUG
67
+ run: |
68
+ python --version; python3 --version; pip --version; pip3 --version
69
+
70
- name: Install dependencies
71
- pip install -q .[examples]
72
+ pip3 install -q .[examples]
73
- name: Test with pytest
74
75
pytest --durations=40 --cov=mammal --cov-fail-under=45 --capture=no mammal/examples/tests
0 commit comments