tests: update version

This commit is contained in:
debugtalk
2020-06-29 19:11:29 +08:00
parent 9bcacd8ccc
commit d924726103
12 changed files with 16 additions and 12 deletions
+3 -1
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