refactor: pipeline

This commit is contained in:
debugtalk
2018-08-21 17:39:12 +08:00
parent 32f78dd2bb
commit 6f3dbacf67
20 changed files with 870 additions and 852 deletions

View File

@@ -39,7 +39,7 @@ def is_testcase(data_structure):
if not isinstance(data_structure, dict):
return False
if "name" not in data_structure or "teststeps" not in data_structure:
if "teststeps" not in data_structure:
return False
if not isinstance(data_structure["teststeps"], list):