Skip to content

Commit 4520b47

Browse files
committedJan 31, 2025
more
1 parent 43fc3ee commit 4520b47

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.github/workflows/py.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python3 -m venv python-venv
2929
source python-venv/bin/activate
3030
python3 -m pip install --upgrade pip
31-
if [ -f requirements.txt ]; then pip3 install -r requirements.txt --upgrade; fi
31+
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt --upgrade; fi
3232
pip3 install flake8 pytest --upgrade
3333
- name: Test and check Python
3434
run: |

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ python:
1515
python3 -m pip install .
1616

1717
test: python
18-
pytest
18+
python3 -m pytest
1919
#cd .devel/sphinx && make doctest && cd ../../
2020

2121
check: python

0 commit comments

Comments
 (0)