We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With tox.ini like this:
[tox] env_list = example1 [testenv] set_env = FOO=1 allowlist_externals = bash commands = bash -c 'env | grep "FOO"' [testenv:example1] set_env = {[testenv]set_env}
Everything works as expected. However, when I replace FOO=1 with file|.env in set_env:
FOO=1
file|.env
set_env
set_env = file|.env
then I get an error: ValueError: invalid line 'file|.env' in set_env.
ValueError: invalid line 'file|.env' in set_env
Expected: being able to use substitution when using file|.
file|
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With tox.ini like this:
Everything works as expected. However, when I replace
FOO=1
withfile|.env
inset_env
:then I get an error:
ValueError: invalid line 'file|.env' in set_env
.Expected: being able to use substitution when using
file|
.The text was updated successfully, but these errors were encountered: