pytest-dev/pytest-github-actions-annotate-failures

Docs: Where to find plugin output in GitHub UI?

jtotoole opened this issue · 2 comments

Hi all, thanks for the great work on this! I'm attempting to use the plugin in a project, and I think I've implemented it correctly, but I'm not sure where I should expect to find the output that appears in the screenshot.

I took the screenshot in "Files changed" tab of a pull request. You can also see annotation messages in a summary page of actions if this plugin is enabled.

Is the test running in a docker container? This plugin is enabled when GITHUB_ACTIONS environment variable is true, so you have to propagate GITHUB_ACTIONS variable to a container in the workflow. https://github.com/utgwkk/pytest-github-actions-annotate-failures/blob/c5ce22e2091f37ffb21ffcf254c77fe56640208a/pytest_github_actions_annotate_failures/plugin.py#L25-L28

I'll try that—thx a bunch!