Skip to content

Commit d97da69

Browse files
committed
Do not ask questions
1 parent 6ac6316 commit d97da69

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ jobs:
3838
- run: poe test -s --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}.xml
3939
- run: poe test -s --workflow-environment time-skipping --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}--time-skipping.xml
4040
# This must remain the last step since it downgrades pydantic
41-
- run: |
42-
poetry run pip uninstall pydantic pydantic-core
41+
- name: Uninstall pydantic
42+
shell: bash
43+
run: |
44+
yes | poetry run pip uninstall pydantic pydantic-core
4345
poetry run pip install pydantic==1.10
4446
poe test -s --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}--pydantic-v1.xml tests/pydantic_converter/workflow_test_v1.py
4547

0 commit comments

Comments
 (0)