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 84f5729 commit 4a42badCopy full SHA for 4a42bad
.github/workflows/build.yml
@@ -24,8 +24,10 @@ jobs:
24
extra_args: --hook-stage manual --all-files
25
- name: Install requirements
26
run: |
27
- pip install poetry
28
- poetry install
+ pip install --upgrade pip
+ pip install poetry~=1.3.2
29
+ poetry config --local virtualenvs.create false
30
+ poetry install --no-interaction --no-ansi
31
- name: Run Tests
32
33
pytest .
poetry.toml
@@ -0,0 +1,3 @@
1
+[virtualenvs]
2
+create = true
3
+in-project = true
0 commit comments