We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43fc3ee commit 4520b47Copy full SHA for 4520b47
.github/workflows/py.yml
@@ -28,7 +28,7 @@ jobs:
28
python3 -m venv python-venv
29
source python-venv/bin/activate
30
python3 -m pip install --upgrade pip
31
- if [ -f requirements.txt ]; then pip3 install -r requirements.txt --upgrade; fi
+ if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt --upgrade; fi
32
pip3 install flake8 pytest --upgrade
33
- name: Test and check Python
34
run: |
Makefile
@@ -15,7 +15,7 @@ python:
15
python3 -m pip install .
16
17
test: python
18
- pytest
+ python3 -m pytest
19
#cd .devel/sphinx && make doctest && cd ../../
20
21
check: python
0 commit comments