fix: dump json file name is empty when running relative testfile

This commit is contained in:
debugtalk
2019-12-12 15:47:51 +08:00
parent 78acd7dc46
commit 8b596b2177
2 changed files with 2 additions and 2 deletions

View File

@@ -11,6 +11,7 @@
- fix: typo testfile_paths
- fix: check if locustio installed
- fix: dump json file name is empty when running relative testfile
## 2.4.0 (2019-12-11)

View File

@@ -480,11 +480,10 @@ def load_project_data(test_path, dot_env_path=None):
debugtalk_functions = {}
# locate PWD and load debugtalk.py functions
project_mapping["PWD"] = project_working_directory
functions.PWD = project_working_directory # TODO: remove
project_mapping["functions"] = debugtalk_functions
project_mapping["test_path"] = test_path
project_mapping["test_path"] = os.path.abspath(test_path)
# load api
tests_def_mapping["api"] = load_api_folder(os.path.join(project_working_directory, "api"))