Skip to content

Commit 612a1ac

Browse files
committed
Use "python -m" in pipeline
1 parent a466697 commit 612a1ac

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/pytest.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@ jobs:
2222
architecture: x64
2323

2424
- name: Install dependencies
25+
shell: bash
2526
run: |
26-
pip install --upgrade pip
27-
pip install poetry
27+
python -m pip install --upgrade pip
28+
python -m pip install poetry
2829
poetry export --dev --without-hashes --output requirements.txt
29-
pip install -r requirements.txt
30+
python -m pip install -r requirements.txt
3031
sudo apt install progress -y
3132
3233
- name: Run tests

0 commit comments

Comments
 (0)