Merge "Stop trying to use a %s tox target"

This commit is contained in:
Zuul 2022-12-23 00:04:09 +00:00 committed by Gerrit Code Review
commit f1e405660f
2 changed files with 3 additions and 3 deletions

View File

@ -16,5 +16,5 @@ commands = sh -c "echo linters >> {posargs}"
[testenv:non-default]
commands = sh -c "echo non-default >> {posargs}"
[testenv:%s]
[testenv:foo]
commands = sh -c "echo working"

View File

@ -76,12 +76,12 @@
register: ALL_status
failed_when: ALL_status is changed
- name: Run tox with tox_envlist = %s
- name: Run tox against a specific config file
include_role:
name: tox
vars:
# Make sure the tox_config_file option works
tox_config_file: test-playbooks/python
tox_envlist: '%s'
tox_envlist: 'foo'
# Make sure we test with verbose output even if the default changes
tox_extra_args: '-vv'