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 6ac6316 commit d97da69Copy full SHA for d97da69
.github/workflows/ci.yml
@@ -38,8 +38,10 @@ jobs:
38
- run: poe test -s --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}.xml
39
- run: poe test -s --workflow-environment time-skipping --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}--time-skipping.xml
40
# This must remain the last step since it downgrades pydantic
41
- - run: |
42
- poetry run pip uninstall pydantic pydantic-core
+ - name: Uninstall pydantic
+ shell: bash
43
+ run: |
44
+ yes | poetry run pip uninstall pydantic pydantic-core
45
poetry run pip install pydantic==1.10
46
poe test -s --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}--pydantic-v1.xml tests/pydantic_converter/workflow_test_v1.py
47
0 commit comments