Curly braces cannot be escaped properly in backticks expressions.
If i try in the tox.ini to set an expression such
setenv =
VERSION = `echo "\{a\}"`
That leads to a tox.exception.ConfigError: ConfigError: substitution key 'a' not found
I've also tried to double the backslash (\\{) and in that case the substitution is not performed but a '{' is passed to the command, which is inconsistent.
Curly braces cannot be escaped properly in backticks expressions.
If i try in the tox.ini to set an expression such
That leads to a
tox.exception.ConfigError: ConfigError: substitution key 'a' not foundI've also tried to double the backslash (
\\{) and in that case the substitution is not performed but a '{' is passed to the command, which is inconsistent.