We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4520b47 commit 6ade644Copy full SHA for 6ade644
.github/workflows/py.yml
@@ -29,8 +29,8 @@ jobs:
29
source python-venv/bin/activate
30
python3 -m pip install --upgrade pip
31
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt --upgrade; fi
32
- pip3 install flake8 pytest --upgrade
+ python3 -m pip install flake8 pytest --upgrade
33
- name: Test and check Python
34
run: |
35
- make test
36
- make check
+ source python-venv/bin/activate
+ python3 -m pytest
0 commit comments