├── .github ├── CODEOWNERS ├── FUNDING.yaml ├── SECURITY.md ├── dependabot.yaml ├── release.yaml └── workflows │ ├── check.yaml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── tox_gh │ ├── __init__.py │ ├── plugin.py │ └── py.typed ├── tests ├── conftest.py ├── test_tox_gh.py └── test_version.py └── tox.toml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | tidelift: pypi/tox-gh 2 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/.github/release.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/tox_gh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/src/tox_gh/__init__.py -------------------------------------------------------------------------------- /src/tox_gh/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/src/tox_gh/plugin.py -------------------------------------------------------------------------------- /src/tox_gh/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_tox_gh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/tests/test_tox_gh.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tox.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tox-dev/tox-gh/HEAD/tox.toml --------------------------------------------------------------------------------