Skip to content

Commit 63d1599

Browse files
authored
ci: Don't use Poetry debug mode, it's currently broken
python-poetry/poetry#3663
1 parent b2dbfdc commit 63d1599

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set up the project
4242
run: |
4343
pip install poetry
44-
poetry install -vvv || { rm -rf .venv; poetry install -vvv; }
44+
poetry install -v || { rm -rf .venv; poetry install -v; }
4545
poetry update
4646
4747
- name: Check if the documentation builds correctly
@@ -85,7 +85,7 @@ jobs:
8585
- name: Set up the project
8686
run: |
8787
pip install poetry
88-
poetry install -vvv || { rm -rf .venv; poetry install -vvv; }
88+
poetry install -v || { rm -rf .venv; poetry install -v; }
8989
poetry update
9090
9191
- name: Run the test suite

0 commit comments

Comments
 (0)