Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix test artifact output location bugs #3117

Merged
merged 1 commit into from
Mar 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions elyra/tests/pipeline/kfp/test_processor_kfp.py
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ def test_generate_pipeline_dsl_compile_pipeline_dsl_one_generic_node_pipeline_te
monkeypatch.setattr(processor, "_upload_dependencies_to_object_store", lambda w, x, y, prefix: True)
monkeypatch.setattr(processor, "_verify_cos_connectivity", lambda x: True)

compiled_argo_output_file = Path(tmpdir) / test_pipeline_file.with_suffix(".yaml")
compiled_argo_output_file = Path(tmpdir) / test_pipeline_file.with_suffix(".yaml").name
compiled_argo_output_file_name = str(compiled_argo_output_file.absolute())

# generate Python DSL for the Argo workflow engine
Expand Down Expand Up @@ -1381,7 +1381,7 @@ def test_generate_pipeline_dsl_compile_pipeline_dsl_generic_components_data_exch

# Test begins here

compiled_output_file = Path(tmpdir) / test_pipeline_file.with_suffix(".yaml")
compiled_output_file = Path(tmpdir) / test_pipeline_file.with_suffix(".yaml").name
compiled_output_file_name = str(compiled_output_file.absolute())

# generate Python DSL
Expand Down