Skip to content

Commit 4a42bad

Browse files
committed
Add poetry.toml, additional poetry install commands
1 parent 84f5729 commit 4a42bad

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ jobs:
2424
extra_args: --hook-stage manual --all-files
2525
- name: Install requirements
2626
run: |
27-
pip install poetry
28-
poetry install
27+
pip install --upgrade pip
28+
pip install poetry~=1.3.2
29+
poetry config --local virtualenvs.create false
30+
poetry install --no-interaction --no-ansi
2931
- name: Run Tests
3032
run: |
3133
pytest .

poetry.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[virtualenvs]
2+
create = true
3+
in-project = true

0 commit comments

Comments
 (0)