We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cddbe4 commit c9debecCopy full SHA for c9debec
.github/workflows/main.yml
@@ -108,4 +108,7 @@ jobs:
108
ref: refs/tags/${{ steps.poetry-plugin-export-version.outputs.version }}
109
110
- name: Run pytest (poetry-plugin-export)
111
- run: poetry run python -m pytest -p no:sugar -q poetry-plugin-export/tests/
+ run: |
112
+ # patch test mock for removed method
113
+ sed -i -e s/poetry.factory.Factory.create_config/poetry.config.config.Config.create/ poetry-plugin-export/tests/conftest.py
114
+ poetry run python -m pytest -p no:sugar -q poetry-plugin-export/tests/
0 commit comments