Skip to content

Commit 61f479c

Browse files
committed
remove print
Signed-off-by: Steven Hahn <hahnse@ornl.gov>
1 parent 3856453 commit 61f479c

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

tests/translators_loggers/test_translators_loggers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ class TestTranslators:
282282
"pegasus",
283283
])
284284
@pytest.mark.unit
285-
# @pytest.mark.skip(reason="tmp")
285+
@pytest.mark.skip(reason="tmp")
286286
def test_translator(self, backend) -> None:
287287
# Create workflow benchmark
288288
benchmark, num_tasks = _create_workflow_benchmark()

wfcommons/wfbench/translator/abstract_translator.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,6 @@ def _copy_binary_files(self, output_folder: pathlib.Path) -> None:
9292
"""
9393
bin_folder = output_folder.joinpath("bin")
9494
bin_folder.mkdir(exist_ok=True)
95-
print("_copy_binary_files...bin_folder: ", bin_folder)
96-
print("_copy_binary_files...wfbench: ", shutil.which("wfbench"))
97-
print("_copy_binary_files...cpu-benchmark: ", shutil.which("cpu-benchmark"))
9895

9996
shutil.copy(shutil.which("wfbench"), bin_folder)
10097
shutil.copy(shutil.which("cpu-benchmark"), bin_folder)

0 commit comments

Comments
 (0)