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 e6f53c8 commit 03753f3Copy full SHA for 03753f3
src/pytask_vscode/execution.py
@@ -7,7 +7,7 @@
7
def pytask_execute_task_log_end(session: pytask.Session, report: pytask.ExecutionReport) -> None:
8
9
if not session.config["dry_run"]:
10
- attrs = {"name" : report.task.short_name, "path" : str(report.task.path), "report" : str(report.outcome)}
+ attrs = {"type" : "task" ,"name" : report.task.short_name, "path" : str(report.task.path), "report" : str(report.outcome)}
11
address = ('localhost', 6000)
12
conn = Client(address, authkey=b'secret password')
13
conn.send(json.dumps(attrs))
0 commit comments