fix: pass adt env to tox#733
Merged
Merged
Conversation
07f284b to
2d1c110
Compare
renovate Bot
added a commit
to sdwilsh/ansible-playbooks
that referenced
this pull request
Apr 28, 2026
##### [\`26.4.5\`](https://github.com/ansible/ansible-dev-tools/releases/tag/v26.4.5) #### Fixes - fix: pass adt env to tox ([#733](ansible/ansible-dev-tools#733)) [@rockygeekz](https://github.com/rockygeekz) #### Maintenance - fix: devspaces sudo support with correct UID and user setup ([#735](ansible/ansible-dev-tools#735)) [@leogallego](https://github.com/leogallego) - chore(deps): update pep621 ([#732](ansible/ansible-dev-tools#732)) @[renovate\[bot\]](https://github.com/apps/renovate) - chore(deps): update all dependencies ([#731](ansible/ansible-dev-tools#731)) @[renovate\[bot\]](https://github.com/apps/renovate)
sdwilsh
pushed a commit
to sdwilsh/ansible-playbooks
that referenced
this pull request
Apr 30, 2026
##### [\`26.4.5\`](https://github.com/ansible/ansible-dev-tools/releases/tag/v26.4.5) #### Fixes - fix: pass adt env to tox ([#733](ansible/ansible-dev-tools#733)) [@rockygeekz](https://github.com/rockygeekz) #### Maintenance - fix: devspaces sudo support with correct UID and user setup ([#735](ansible/ansible-dev-tools#735)) [@leogallego](https://github.com/leogallego) - chore(deps): update pep621 ([#732](ansible/ansible-dev-tools#732)) @[renovate\[bot\]](https://github.com/apps/renovate) - chore(deps): update all dependencies ([#731](ansible/ansible-dev-tools#731)) @[renovate\[bot\]](https://github.com/apps/renovate)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ADT_*to toxpass_envsoADT_CONTAINER_ENGINEis forwarded to build scripts likedevspaces.shProblem
tools/devspaces.shdefaults todockerwhenADT_CONTAINER_ENGINEis unset. Tox strips this variable because it's not inpass_env, so runningADT_CONTAINER_ENGINE=podman tox -e devspacesstill fails withdocker: command not found.Fix
Added
ADT_*topass_envinpyproject.toml, consistent with existing wildcards likeDOCKER_*,CONTAINER_*, andUV_*.