├── .config ├── dictionary.txt └── pydoclint-baseline.txt ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── release-drafter.yml └── workflows │ ├── ack.yml │ ├── finalize.yml │ ├── push.yml │ ├── release.yml │ └── tox.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .taplo.toml ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── codecov.yml ├── cspell.config.yaml ├── docs ├── configuration.md ├── contributor_guide.md ├── faq.md ├── galaxy.yml ├── index.md ├── installation.md ├── integration.ini ├── sanity.ini ├── tox-ansible.ini ├── unit.ini └── user_guide.md ├── mkdocs.yml ├── pyproject.toml ├── renovate.json ├── sonar-project.properties ├── src └── tox_ansible │ ├── __init__.py │ └── plugin.py ├── tests ├── __init__.py ├── conftest.py ├── fixtures │ ├── integration │ │ ├── test_basic │ │ │ ├── galaxy.yml │ │ │ ├── tox-ansible.ini │ │ │ └── tox.ini │ │ └── test_user_provided │ │ │ ├── galaxy.yml │ │ │ └── tox-ansible.ini │ └── unit │ │ └── test_type │ │ └── tox-ansible.ini ├── integration │ ├── __init__.py │ ├── test_basic.py │ └── test_user_provided.py └── unit │ ├── __init__.py │ ├── test_plugin.py │ └── test_type.py ├── tools └── report-coverage └── uv.lock /.config/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.config/dictionary.txt -------------------------------------------------------------------------------- /.config/pydoclint-baseline.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.github/workflows/ack.yml -------------------------------------------------------------------------------- /.github/workflows/finalize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.github/workflows/finalize.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.github/workflows/tox.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.taplo.toml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/codecov.yml -------------------------------------------------------------------------------- /cspell.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/cspell.config.yaml -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributor_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/contributor_guide.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/galaxy.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/integration.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/integration.ini -------------------------------------------------------------------------------- /docs/sanity.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/sanity.ini -------------------------------------------------------------------------------- /docs/tox-ansible.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/unit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/unit.ini -------------------------------------------------------------------------------- /docs/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/docs/user_guide.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/renovate.json -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/tox_ansible/__init__.py: -------------------------------------------------------------------------------- 1 | """The tox-ansible package.""" 2 | -------------------------------------------------------------------------------- /src/tox_ansible/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/src/tox_ansible/plugin.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/integration/test_basic/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/fixtures/integration/test_basic/galaxy.yml -------------------------------------------------------------------------------- /tests/fixtures/integration/test_basic/tox-ansible.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/fixtures/integration/test_basic/tox-ansible.ini -------------------------------------------------------------------------------- /tests/fixtures/integration/test_basic/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/fixtures/integration/test_basic/tox.ini -------------------------------------------------------------------------------- /tests/fixtures/integration/test_user_provided/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/fixtures/integration/test_user_provided/galaxy.yml -------------------------------------------------------------------------------- /tests/fixtures/integration/test_user_provided/tox-ansible.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/fixtures/integration/test_user_provided/tox-ansible.ini -------------------------------------------------------------------------------- /tests/fixtures/unit/test_type/tox-ansible.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/fixtures/unit/test_type/tox-ansible.ini -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | """Integration tests.""" 2 | -------------------------------------------------------------------------------- /tests/integration/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/integration/test_basic.py -------------------------------------------------------------------------------- /tests/integration/test_user_provided.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/integration/test_user_provided.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit tests for tox-ansible.""" 2 | -------------------------------------------------------------------------------- /tests/unit/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/unit/test_plugin.py -------------------------------------------------------------------------------- /tests/unit/test_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tests/unit/test_type.py -------------------------------------------------------------------------------- /tools/report-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/tools/report-coverage -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tox-ansible/HEAD/uv.lock --------------------------------------------------------------------------------