We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a466697 commit 612a1acCopy full SHA for 612a1ac
.github/workflows/pytest.yml
@@ -22,11 +22,12 @@ jobs:
22
architecture: x64
23
24
- name: Install dependencies
25
+ shell: bash
26
run: |
- pip install --upgrade pip
27
- pip install poetry
+ python -m pip install --upgrade pip
28
+ python -m pip install poetry
29
poetry export --dev --without-hashes --output requirements.txt
- pip install -r requirements.txt
30
+ python -m pip install -r requirements.txt
31
sudo apt install progress -y
32
33
- name: Run tests
0 commit comments