├── .config ├── dictionary.txt └── pydoclint-baseline.txt ├── .devcontainer ├── devcontainer.json ├── docker │ └── devcontainer.json └── podman │ └── devcontainer.json ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ └── bug.yml ├── actions │ └── merge-release │ │ └── action.yml ├── release-drafter.yml └── workflows │ ├── ack.yml │ ├── finalize.yml │ └── tox.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── bindep.txt ├── biome.json ├── codecov.yml ├── cspell.config.yaml ├── devfile.yaml ├── devspaces ├── .gitignore ├── Containerfile ├── LICENSE ├── README.md ├── context │ ├── podman.py │ ├── requirements.txt │ ├── requirements.yml │ └── setup.sh └── playbooks │ ├── ansible-navigator.yml │ └── site.yaml ├── docs ├── container.md ├── contributor-guide.md ├── devspaces.md ├── examples │ ├── execution-environment.yml │ ├── requirements.txt │ └── requirements.yml ├── index.md ├── installation.md ├── media │ ├── ansible-lint.mp4 │ ├── ansible-navigator-run.mp4 │ ├── compress.sh │ └── create-collection.mp4 └── user-guide │ ├── building-collection.md │ ├── ci-setup.md │ ├── content-best-practices.md │ ├── content-release.md │ ├── images │ ├── ci.png │ └── release.png │ ├── index.md │ ├── test-isolation.md │ └── testing.md ├── execution-environment.yml ├── final ├── .ohmyposh.omp.json ├── Containerfile ├── docker-prune.sh └── setup.sh ├── mise.toml ├── mkdocs.yml ├── pyproject.toml ├── renovate.json ├── requirements.yml ├── site.yml ├── sonar-project.properties ├── src ├── ansible_dev_tools │ ├── __init__.py │ ├── __main__.py │ ├── arg_parser.py │ ├── cli.py │ ├── resources │ │ └── server │ │ │ ├── __init__.py │ │ │ ├── creator_v1.py │ │ │ ├── creator_v2.py │ │ │ ├── data │ │ │ ├── __init__.py │ │ │ └── openapi.yaml │ │ │ └── server_info.py │ ├── server_utils.py │ ├── subcommands │ │ ├── __init__.py │ │ └── server.py │ ├── utils.py │ └── version_builder.py └── py.typed ├── tests ├── __init__.py ├── conftest.py ├── fixtures │ └── integration │ │ └── test_container │ │ ├── execution-environment.yml │ │ └── site.yml ├── integration │ ├── __init__.py │ ├── conftest.py │ ├── test_cli.py │ ├── test_container.py │ ├── test_server_creator_v1.py │ ├── test_server_creator_v2.py │ └── test_server_info.py └── unit │ ├── __init__.py │ ├── test_basic.py │ ├── test_cli.py │ ├── test_server.py │ ├── test_server_utils.py │ └── test_version_builder.py ├── tools ├── cleanup.sh ├── devspaces.sh ├── ee.sh ├── setup-image.sh └── test-setup.sh └── uv.lock /.config/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.config/dictionary.txt -------------------------------------------------------------------------------- /.config/pydoclint-baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.config/pydoclint-baseline.txt -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.devcontainer/docker/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/podman/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.devcontainer/podman/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/actions/merge-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.github/actions/merge-release/action.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.github/workflows/ack.yml -------------------------------------------------------------------------------- /.github/workflows/finalize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.github/workflows/finalize.yml -------------------------------------------------------------------------------- /.github/workflows/tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.github/workflows/tox.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/README.md -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/bindep.txt -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/biome.json -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/codecov.yml -------------------------------------------------------------------------------- /cspell.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/cspell.config.yaml -------------------------------------------------------------------------------- /devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devfile.yaml -------------------------------------------------------------------------------- /devspaces/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devspaces/.gitignore -------------------------------------------------------------------------------- /devspaces/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devspaces/Containerfile -------------------------------------------------------------------------------- /devspaces/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devspaces/LICENSE -------------------------------------------------------------------------------- /devspaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devspaces/README.md -------------------------------------------------------------------------------- /devspaces/context/podman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devspaces/context/podman.py -------------------------------------------------------------------------------- /devspaces/context/requirements.txt: -------------------------------------------------------------------------------- 1 | kubernetes==34.1.0 2 | molecule-plugins[podman]==25.8.12 3 | -------------------------------------------------------------------------------- /devspaces/context/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devspaces/context/requirements.yml -------------------------------------------------------------------------------- /devspaces/context/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devspaces/context/setup.sh -------------------------------------------------------------------------------- /devspaces/playbooks/ansible-navigator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devspaces/playbooks/ansible-navigator.yml -------------------------------------------------------------------------------- /devspaces/playbooks/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/devspaces/playbooks/site.yaml -------------------------------------------------------------------------------- /docs/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/container.md -------------------------------------------------------------------------------- /docs/contributor-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/contributor-guide.md -------------------------------------------------------------------------------- /docs/devspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/devspaces.md -------------------------------------------------------------------------------- /docs/examples/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/examples/execution-environment.yml -------------------------------------------------------------------------------- /docs/examples/requirements.txt: -------------------------------------------------------------------------------- 1 | ansible-pylibssh==1.1.0 2 | -------------------------------------------------------------------------------- /docs/examples/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/examples/requirements.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/media/ansible-lint.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/media/ansible-lint.mp4 -------------------------------------------------------------------------------- /docs/media/ansible-navigator-run.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/media/ansible-navigator-run.mp4 -------------------------------------------------------------------------------- /docs/media/compress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/media/compress.sh -------------------------------------------------------------------------------- /docs/media/create-collection.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/media/create-collection.mp4 -------------------------------------------------------------------------------- /docs/user-guide/building-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/user-guide/building-collection.md -------------------------------------------------------------------------------- /docs/user-guide/ci-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/user-guide/ci-setup.md -------------------------------------------------------------------------------- /docs/user-guide/content-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/user-guide/content-best-practices.md -------------------------------------------------------------------------------- /docs/user-guide/content-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/user-guide/content-release.md -------------------------------------------------------------------------------- /docs/user-guide/images/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/user-guide/images/ci.png -------------------------------------------------------------------------------- /docs/user-guide/images/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/user-guide/images/release.png -------------------------------------------------------------------------------- /docs/user-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/user-guide/index.md -------------------------------------------------------------------------------- /docs/user-guide/test-isolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/user-guide/test-isolation.md -------------------------------------------------------------------------------- /docs/user-guide/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/docs/user-guide/testing.md -------------------------------------------------------------------------------- /execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/execution-environment.yml -------------------------------------------------------------------------------- /final/.ohmyposh.omp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/final/.ohmyposh.omp.json -------------------------------------------------------------------------------- /final/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/final/Containerfile -------------------------------------------------------------------------------- /final/docker-prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/final/docker-prune.sh -------------------------------------------------------------------------------- /final/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/final/setup.sh -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/requirements.yml -------------------------------------------------------------------------------- /site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/site.yml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/ansible_dev_tools/__init__.py: -------------------------------------------------------------------------------- 1 | """Root init.""" 2 | -------------------------------------------------------------------------------- /src/ansible_dev_tools/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/__main__.py -------------------------------------------------------------------------------- /src/ansible_dev_tools/arg_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/arg_parser.py -------------------------------------------------------------------------------- /src/ansible_dev_tools/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/cli.py -------------------------------------------------------------------------------- /src/ansible_dev_tools/resources/server/__init__.py: -------------------------------------------------------------------------------- 1 | """Top level package for Ansible Devtools server.""" 2 | -------------------------------------------------------------------------------- /src/ansible_dev_tools/resources/server/creator_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/resources/server/creator_v1.py -------------------------------------------------------------------------------- /src/ansible_dev_tools/resources/server/creator_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/resources/server/creator_v2.py -------------------------------------------------------------------------------- /src/ansible_dev_tools/resources/server/data/__init__.py: -------------------------------------------------------------------------------- 1 | """Data package for Ansible Devtools server.""" 2 | -------------------------------------------------------------------------------- /src/ansible_dev_tools/resources/server/data/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/resources/server/data/openapi.yaml -------------------------------------------------------------------------------- /src/ansible_dev_tools/resources/server/server_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/resources/server/server_info.py -------------------------------------------------------------------------------- /src/ansible_dev_tools/server_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/server_utils.py -------------------------------------------------------------------------------- /src/ansible_dev_tools/subcommands/__init__.py: -------------------------------------------------------------------------------- 1 | """Top level package for Ansible Devtools subcommands.""" 2 | -------------------------------------------------------------------------------- /src/ansible_dev_tools/subcommands/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/subcommands/server.py -------------------------------------------------------------------------------- /src/ansible_dev_tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/utils.py -------------------------------------------------------------------------------- /src/ansible_dev_tools/version_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/src/ansible_dev_tools/version_builder.py -------------------------------------------------------------------------------- /src/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/integration/test_container/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/fixtures/integration/test_container/execution-environment.yml -------------------------------------------------------------------------------- /tests/fixtures/integration/test_container/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/fixtures/integration/test_container/site.yml -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | """Integration tests.""" 2 | -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/integration/test_cli.py -------------------------------------------------------------------------------- /tests/integration/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/integration/test_container.py -------------------------------------------------------------------------------- /tests/integration/test_server_creator_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/integration/test_server_creator_v1.py -------------------------------------------------------------------------------- /tests/integration/test_server_creator_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/integration/test_server_creator_v2.py -------------------------------------------------------------------------------- /tests/integration/test_server_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/integration/test_server_info.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit tests for the project.""" 2 | -------------------------------------------------------------------------------- /tests/unit/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/unit/test_basic.py -------------------------------------------------------------------------------- /tests/unit/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/unit/test_cli.py -------------------------------------------------------------------------------- /tests/unit/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/unit/test_server.py -------------------------------------------------------------------------------- /tests/unit/test_server_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/unit/test_server_utils.py -------------------------------------------------------------------------------- /tests/unit/test_version_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tests/unit/test_version_builder.py -------------------------------------------------------------------------------- /tools/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tools/cleanup.sh -------------------------------------------------------------------------------- /tools/devspaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tools/devspaces.sh -------------------------------------------------------------------------------- /tools/ee.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tools/ee.sh -------------------------------------------------------------------------------- /tools/setup-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tools/setup-image.sh -------------------------------------------------------------------------------- /tools/test-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/tools/test-setup.sh -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-dev-tools/HEAD/uv.lock --------------------------------------------------------------------------------