Skip to content

Commit ef35138

Browse files
committed
Add verbose option to poetry calls
1 parent 0672fe2 commit ef35138

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pytest-poetry.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
# not the project itself", which is what you want to avoid caching _your_
8787
# code. The `if` statement ensures this only runs on a cache miss.
8888
- name: 🎭 Install 🧾 Dependencies
89-
run: scripts/run-poetry.sh install --no-interaction --no-root
89+
run: scripts/run-poetry.sh install --no-interaction --no-root --verbose
9090
if: steps.cache-deps.outputs.cache-hit != 'true'
9191

9292
# Now install _your_ project. This isn't necessary for many types of
@@ -95,7 +95,7 @@ jobs:
9595
# that if you add things like console-scripts at some point that they'll
9696
# be installed and working.
9797
- name: 🎭 Install 🛖 project
98-
run: scripts/run-poetry.sh install --no-interaction
98+
run: scripts/run-poetry.sh install --no-interaction --verbose
9999

100100
# And finally run the tests.
101101
- name: 🧪🎭 Run Tests

0 commit comments

Comments
 (0)