We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 144b8b2 commit 82e9deaCopy full SHA for 82e9dea
.github/workflows/run_tests.yaml
@@ -24,6 +24,12 @@ jobs:
24
with:
25
python-version: "3.10"
26
27
+ # Install Poetry
28
+ - name: Install Poetry
29
+ run: |
30
+ python -m pip install --upgrade pip
31
+ pip install poetry
32
+
33
# Clear Poetry cache
34
- name: Clear Poetry cache
35
run: |
@@ -40,11 +46,6 @@ jobs:
40
46
echo "Chrome is already installed"
41
47
fi
42
48
43
- - name: Install Poetry
44
- run: |
45
- python -m pip install --upgrade pip
- pip install poetry
-
49
- name: Install dependencies with Poetry
50
51
poetry install
0 commit comments