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 8769771 commit 8da1d47Copy full SHA for 8da1d47
test/unit/data/model/test_model_store.py
@@ -740,12 +740,12 @@ def test_export_invocation_to_ro_crate_archive(tmp_path):
740
workflow_invocation = _setup_invocation(app)
741
742
crate_zip = tmp_path / "crate.zip"
743
+ crate_directory = tmp_path / "crate"
744
with store.ROCrateArchiveModelExportStore(crate_zip, app=app, export_files="symlink") as export_store:
745
export_store.export_workflow_invocation(workflow_invocation)
746
with CompressedFile(crate_zip) as compressed_file:
747
assert compressed_file.file_type == "zip"
- compressed_file.extract(tmp_path)
748
- crate_directory = tmp_path / "crate"
+ compressed_file.extract(crate_directory)
749
validate_invocation_crate_directory(crate_directory)
750
751
0 commit comments