Skip to content

Commit 602db18

Browse files
committed
fix: included tmp_path output to visualize difference
1 parent 66f0dc3 commit 602db18

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
import re
3-
from pathlib import Path
3+
#from pathlib import Path
44
from typing import Optional
55
import snakemake.common.tests
66
from snakemake_interface_executor_plugins.settings import ExecutorSettingsBase
@@ -57,6 +57,8 @@ def test_simple_workflow(self, tmp_path):
5757
# current working directory
5858
pattern = re.compile(r"efficiency_report_[\w-]+\.csv")
5959
report_found = False
60+
# report the tmp_path directory for debugging
61+
print(f"'tmp_path' is: {tmp_path}")
6062

6163
# as the directory is unclear, we need a path walk:
6264
for root, _, files in os.walk("/tmp/pytest-of-runner/"):

0 commit comments

Comments
 (0)