Skip to content

Commit f85351e

Browse files
2 parents 8fe3bd1 + 5a957df commit f85351e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
run: |
2626
python -m pip install --upgrade pip
2727
python -m pip install flake8 pytest
28-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
28+
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
2929
- name: Install our code as a package
3030
run: |
31-
pip install -e .
31+
python -m pip install -e .
3232
- name: Lint with flake8
3333
run: |
3434
# stop the build if there are Python syntax errors or undefined names

0 commit comments

Comments
 (0)