From b1bf06d4045087f2c6a9cd5970b74673f9bc9ef0 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Wed, 1 Jan 2020 22:13:50 +0800 Subject: [PATCH] doc: remove complete TODOs --- httprunner/loader/buildup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/httprunner/loader/buildup.py b/httprunner/loader/buildup.py index edc8e92b..23f772cf 100644 --- a/httprunner/loader/buildup.py +++ b/httprunner/loader/buildup.py @@ -349,7 +349,6 @@ def load_test_file(path): if "testcases" in raw_content: # file_type: testsuite - # TODO: add json schema validation for testsuite loaded_content = load_testsuite(raw_content) loaded_content["path"] = path loaded_content["type"] = "testsuite" @@ -374,7 +373,6 @@ def load_test_file(path): elif isinstance(raw_content, list) and len(raw_content) > 0: # file_type: testcase # make compatible with version < 2.2.0 - # TODO: add json schema validation for testcase loaded_content = load_testcase(raw_content) loaded_content["path"] = path loaded_content["type"] = "testcase"