Skip to content

Commit cd6d470

Browse files
fix wrong parameterization
1 parent 649e9ee commit cd6d470

File tree

1 file changed

+1
-1
lines changed
  • pytest_github_actions_annotate_failures

1 file changed

+1
-1
lines changed

pytest_github_actions_annotate_failures/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def pytest_runtest_makereport(item: Item, call):
8484
if parsed_errors is not None:
8585
for _lineno, _message in parsed_errors:
8686
print(
87-
_error_workflow_command(filesystempath, lineno, _lineno + "\n\n" + _message), file=sys.stderr
87+
_error_workflow_command(filesystempath, _lineno, longrepr + "\n\n" + _message), file=sys.stderr
8888
)
8989
return
9090
else:

0 commit comments

Comments
 (0)