-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexecute.py
62 lines (47 loc) · 2.12 KB
/
execute.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""Execute tasks."""
from __future__ import annotations
import re
from pytask import Session
from pytask import Task
from pytask import has_mark
from pytask import hookimpl
from pytask_stata.shared import STATA_COMMANDS
from pytask_stata.shared import convert_task_id_to_name_of_log_file
@hookimpl
def pytask_execute_task_setup(session: Session, task: Task) -> None:
"""Check if Stata is found on the PATH."""
if has_mark(task, "stata") and session.config["stata"] is None:
msg = (
"Stata is needed to run do-files, but it is not found on your PATH.\n\n"
f"We are looking for one of {STATA_COMMANDS} on your PATH. If you have a"
"different Stata executable, please, file an issue at "
"https://github.com/pytask-dev/pytask-stata."
)
raise RuntimeError(msg)
@hookimpl
def pytask_execute_task_teardown(session: Session, task: Task) -> None:
"""Check if the log file contains no error code.
Stata has the weird behavior of always returning an exit code of 0 even if an error
occurred. Therefore, we need to parse the real error code from the log files.
Error codes have a preceding r and a number enclosed in round brackets like ``r(1)``
or ``r(601)``.
"""
if has_mark(task, "stata"):
if session.config["platform"] == "win32":
log_name = convert_task_id_to_name_of_log_file(task.short_name)
path_to_log = task.path.with_name(log_name).with_suffix(".log")
else:
node = task.depends_on["__script"]
path_to_log = node.path.with_suffix(".log")
n_lines = session.config["stata_check_log_lines"]
log = path_to_log.read_text()
log_tail = log.split("\n")[-n_lines:]
for line in log_tail:
error_found = re.match(r"r\(([0-9]+)\)", line)
if error_found:
if not session.config["stata_keep_log"]:
path_to_log.unlink()
raise RuntimeError(
f"An error occurred. Here are the last {n_lines} lines of the log:"
"\n\n" + "\n".join(log_tail)
)