├── .github ├── dependabot.yml └── workflows │ ├── deploy.yml │ ├── format.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── plugin_test.py ├── pyproject.toml ├── pytest_github_actions_annotate_failures ├── __init__.py └── plugin.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/README.md -------------------------------------------------------------------------------- /plugin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/plugin_test.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_github_actions_annotate_failures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_github_actions_annotate_failures/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/pytest_github_actions_annotate_failures/plugin.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-github-actions-annotate-failures/HEAD/tox.ini --------------------------------------------------------------------------------