Skip to content

Commit c94af48

Browse files
committed
Fix failing test due to mock missing value
1 parent f7ef0cd commit c94af48

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/unit/nox/_artifacts_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def mock_check_artifacts_session(
5151
def mock_session(path: Path, python_version: str, *files: str):
5252
with patch("exasol.toolbox.nox._artifacts.PROJECT_CONFIG") as config:
5353
config.python_versions = [python_version]
54+
config.minimum_python_version = python_version
5455
for rel in files:
5556
file = path / rel
5657
file.parent.mkdir(parents=True, exist_ok=True)

0 commit comments

Comments
 (0)