Skip to content

Commit bf8d74f

Browse files
committed
tweak
1 parent af18065 commit bf8d74f

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

tests/test_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def _install_WfCommons_on_container(container):
5050
exit_code, output = container.exec_run(r"sudo sed -i 's|if os.path.exists(cpu_benchmark_path):|if True:|' /tmp/WfCommons/setup.py")
5151

5252
# Install WfCommons on the container (to install wfbench and cpu-benchmark really)
53-
exit_code, output = container.exec_run("sudo python3 -m pip install -v . --break-system-packages",
53+
exit_code, output = container.exec_run("sudo python3 -m pip install . --break-system-packages",
5454
workdir="/tmp/WfCommons", stdout=True, stderr=True)
5555
# print(output.decode())
5656
if exit_code != 0:

tests/translators_loggers/test_translators_loggers.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -230,16 +230,16 @@ class TestTranslators:
230230
@pytest.mark.parametrize(
231231
"backend",
232232
[
233-
"swiftt",
234-
"dask",
233+
# "swiftt",
234+
# "dask",
235235
"parsl",
236-
"nextflow",
237-
"airflow",
238-
"bash",
239-
"taskvine",
240-
"makeflow",
241-
"cwl",
242-
"pegasus",
236+
# "nextflow",
237+
# "airflow",
238+
# "bash",
239+
# "taskvine",
240+
# "makeflow",
241+
# "cwl",
242+
# "pegasus",
243243
])
244244
@pytest.mark.unit
245245
# @pytest.mark.skip(reason="tmp")

0 commit comments

Comments
 (0)