tests: update version

This commit is contained in:
debugtalk
2020-06-29 18:49:32 +08:00
parent 7d39fce20e
commit 880a4e9e4a
12 changed files with 16 additions and 12 deletions

View File

@@ -137,7 +137,9 @@ def load_dot_env_file(dot_env_path: Text) -> Dict:
else:
raise exceptions.FileFormatError(".env format error")
env_variables_mapping[variable.strip().decode("utf-8")] = value.strip().decode("utf-8")
env_variables_mapping[
variable.strip().decode("utf-8")
] = value.strip().decode("utf-8")
utils.set_os_environ(env_variables_mapping)
return env_variables_mapping