Skip to content

Commit 41f33b9

Browse files
committed
Try alternate test with global poetry export
1 parent a146a15 commit 41f33b9

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/slow-checks.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
python-version: ${{ matrix.python-version }}
3838

3939
- name: Run Tests and Collect Coverage
40-
run: poetry run -- nox -s test:integration -- --coverage --db-version ${{ matrix.exasol-version }}
40+
run: |
41+
poetry self add poetry-plugin-export
42+
poetry run -- nox -s test:integration -- --coverage --db-version ${{ matrix.exasol-version }}
4143
4244
- name: Upload Artifacts
4345
uses: actions/[email protected]

test/integration/util/dependencies/audit_integration_test.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,6 @@ def create_poetry_project(tmp_path, sample_vulnerability):
2020
],
2121
cwd=poetry_root_dir,
2222
)
23-
24-
poetry_export = """[tool.poetry.requires - plugins]
25-
poetry - plugin - export = ">=1.8"
26-
"""
27-
with (poetry_root_dir / "pyproject.toml").open("a") as f:
28-
f.write(poetry_export)
29-
3023
return poetry_root_dir
3124

3225

0 commit comments

Comments
 (0)