Skip to content

Commit cf00d68

Browse files
committed
Fix.
1 parent 79789f0 commit cf00d68

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/pytask_stata/collect.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def run_stata_script(
3535
_cwd: Path,
3636
) -> None:
3737
"""Run an R script."""
38-
cmd = [_executable, "-e", "do", _script.as_posix(), *_options, _log_name]
38+
cmd = [_executable, "-e", "do", _script.as_posix(), *_options, f"-{_log_name}"]
3939
print("Executing " + " ".join(cmd) + ".") # noqa: T201
4040
subprocess.run(cmd, cwd=_cwd, check=True) # noqa: S603
4141

@@ -165,17 +165,16 @@ def pytask_collect_task(
165165
# Add log_name node that depends on the task id.
166166
if session.config["platform"] == "win32":
167167
log_name = convert_task_id_to_name_of_log_file(task)
168-
log_name_arg = f"-{log_name}"
169168
else:
170-
log_name_arg = ""
169+
log_name = ""
171170

172171
log_name_node = session.hook.pytask_collect_node(
173172
session=session,
174173
path=path_nodes,
175174
node_info=NodeInfo(
176175
arg_name="_log_name",
177176
path=(),
178-
value=PythonNode(value=log_name_arg),
177+
value=PythonNode(value=log_name),
179178
task_path=path,
180179
task_name=name,
181180
),

src/pytask_stata/execute.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def pytask_execute_task_teardown(session: Session, task: PTask) -> None:
4040
"""
4141
if has_mark(task, "stata"):
4242
if session.config["platform"] == "win32":
43-
log_name = task.depends_on["_log_name"]
43+
log_name = task.depends_on["_log_name"].load()
4444
if isinstance(task, PTaskWithPath):
4545
path_to_log = task.path.with_name(log_name).with_suffix(".log")
4646
else:

tests/test_execute.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,6 @@ def test_with_task_without_path(runner, tmp_path):
225225
assert tmp_path.joinpath("auto.dta").exists()
226226

227227
if sys.platform == "win32":
228-
assert tmp_path.joinpath("lambda.log").exists()
228+
assert tmp_path.joinpath("task_example_py_lambda.log").exists()
229229
else:
230-
assert tmp_path.joinpath("lambda.log").exists()
230+
assert not tmp_path.joinpath("task_example_py_lambda.log").exists()

0 commit comments

Comments
 (0)