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 66f0dc3 commit 602db18Copy full SHA for 602db18
tests/tests.py
@@ -1,6 +1,6 @@
1
import os
2
import re
3
-from pathlib import Path
+#from pathlib import Path
4
from typing import Optional
5
import snakemake.common.tests
6
from snakemake_interface_executor_plugins.settings import ExecutorSettingsBase
@@ -57,6 +57,8 @@ def test_simple_workflow(self, tmp_path):
57
# current working directory
58
pattern = re.compile(r"efficiency_report_[\w-]+\.csv")
59
report_found = False
60
+ # report the tmp_path directory for debugging
61
+ print(f"'tmp_path' is: {tmp_path}")
62
63
# as the directory is unclear, we need a path walk:
64
for root, _, files in os.walk("/tmp/pytest-of-runner/"):
0 commit comments