Skip to content

Commit

Permalink
chore: and again, windows
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Feb 28, 2024
1 parent b3378c1 commit 912f76f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_archives/test_archive_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_archive_export_values_no_alias(api: KiaraAPI):
operation="logic.and", inputs={"a": True, "b": True}
)

with tempfile.TemporaryDirectory() as temp_dir:
with tempfile.TemporaryDirectory(suffix="no_alias") as temp_dir:

temp_file_path = Path(temp_dir) / "export_test_no_alias.kiarchive"
print("temp_file_path", temp_file_path.as_posix())
Expand Down Expand Up @@ -136,7 +136,7 @@ def test_archive_export_values_alias(api: KiaraAPI):
operation="logic.and", inputs={"a": True, "b": True}
)

with tempfile.TemporaryDirectory() as temp_dir:
with tempfile.TemporaryDirectory(suffix="alias") as temp_dir:

temp_file_path = Path(temp_dir) / "export_test_alias.kiarchive"
print("temp_file_path", temp_file_path.as_posix())
Expand Down Expand Up @@ -196,7 +196,7 @@ def test_archive_export_values_alias_multipe_values(api: KiaraAPI):
"result_2": result_2,
}

with tempfile.TemporaryDirectory() as temp_dir:
with tempfile.TemporaryDirectory(suffix="multiple") as temp_dir:

temp_file_path = Path(temp_dir) / "export_test_alias_multiple_values.kiarchive"
print("temp_file_path", temp_file_path.as_posix())
Expand Down

0 comments on commit 912f76f

Please sign in to comment.