docs: update changelog

This commit is contained in:
debugtalk
2020-06-05 14:38:42 +08:00
parent 26f5313172
commit b32296537d
3 changed files with 17 additions and 2 deletions

View File

@@ -1,5 +1,17 @@
# Release History
## 3.0.9 (2020-06-05)
**Fixed**
- fix: miss formatting referenced testcase
**Changed**
- change: add `export` keyword in TStep to export session variables from referenced testcase
- change: rename TestCaseInOut field, config_vars and export_vars
- change: rename StepData field, export_vars
## 3.0.8 (2020-06-04)
**Added**

View File

@@ -301,7 +301,9 @@ def make_testcase(testcase: Dict, dir_path: Text = None) -> Text:
ref_testcase_python_path = make_testcase(test_content)
# prepare ref testcase class name
ref_testcase_cls_name = pytest_files_made_cache_mapping[ref_testcase_python_path]
ref_testcase_cls_name = pytest_files_made_cache_mapping[
ref_testcase_python_path
]
teststep["testcase"] = ref_testcase_cls_name
# prepare import ref testcase

View File

@@ -334,7 +334,8 @@ class HttpRunner(object):
duration=self.__duration,
),
in_out=TestCaseInOut(
config_vars=self.__config.variables, export_vars=self.get_export_variables()
config_vars=self.__config.variables,
export_vars=self.get_export_variables(),
),
log=self.__log_path,
step_datas=self.__step_datas,