mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
PY-9727: Dict update fix
EnvDict does not support update, using __setitem__ instead
This commit is contained in:
@@ -79,7 +79,7 @@ config = tox_config.parseconfig()
|
||||
for env, tmp_config in config.envconfigs.items():
|
||||
if not tmp_config.setenv:
|
||||
tmp_config.setenv = dict()
|
||||
tmp_config.setenv.update({"_jb_do_not_call_enter_matrix": "1"})
|
||||
tmp_config.setenv["_jb_do_not_call_enter_matrix"] = "1"
|
||||
commands = tmp_config.commands
|
||||
if not isinstance(commands, list) or not len(commands):
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user