diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-05-30 21:58:19 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-05-30 21:58:19 +0800 |
commit | 6abf629d23e98102c66d6c6e09be370e61a01814 (patch) | |
tree | 5c2f7e6969ce0eab08d86356350ea660518d4ef0 /utils | |
parent | 99700863f3c28fb7fb36e6670b78da828cbbddd4 (diff) |
eliminate flake8 violation of testAPI
JIRA: FUNCTEST-274
Change-Id: I64e5e1c0d1165ac7ad7ff59dfd824dc00e131cdc
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'utils')
3 files changed, 3 insertions, 15 deletions
diff --git a/utils/test/result_collection_api/resources/handlers.py b/utils/test/result_collection_api/resources/handlers.py index b4f7117a3..a2c6b8d01 100644 --- a/utils/test/result_collection_api/resources/handlers.py +++ b/utils/test/result_collection_api/resources/handlers.py @@ -177,7 +177,7 @@ class GenericApiHandler(RequestHandler): request = dict() for k, v in self.json_args.iteritems(): request = self._update_request(request, k, v, - data.__getattribute__(k)) + data.__getattribute__(k)) if not request: raise HTTPError(HTTP_FORBIDDEN, "Nothing to update") return request diff --git a/utils/test/result_collection_api/resources/result_handlers.py b/utils/test/result_collection_api/resources/result_handlers.py index d344f462b..e7fce47df 100644 --- a/utils/test/result_collection_api/resources/result_handlers.py +++ b/utils/test/result_collection_api/resources/result_handlers.py @@ -54,8 +54,8 @@ class ResultsCLHandler(GenericResultHandler): - period : x (x last days) - scenario : the test scenario (previously version) - criteria : the global criteria status passed or failed - - trust_indicator : evaluate the stability of the test case to avoid - running systematically long and stable test case + - trust_indicator : evaluate the stability of the test case + to avoid running systematically long and stable test case GET /results/project=functest&case=vPing&version=Arno-R1 \ &pod=pod_name&period=15 diff --git a/utils/test/result_collection_api/tests/unit/test_result.py b/utils/test/result_collection_api/tests/unit/test_result.py index a7541b316..f08ccea83 100644 --- a/utils/test/result_collection_api/tests/unit/test_result.py +++ b/utils/test/result_collection_api/tests/unit/test_result.py @@ -155,18 +155,6 @@ class TestResultCreate(TestResultBase): self.assert_href(body) def test_createSameResults(self): - # req_again = ResultCreateRequest(pod_name=self.pod, - # project_name=self.project, - # case_name=self.case, - # installer=self.installer, - # version=self.version, - # start_date="2016-05-23 08:16:09.477097", - # stop_date=self.stop_date, - # details=self.details.format(), - # build_tag=self.build_tag, - # scenario=self.scenario, - # criteria=self.criteria, - # trust_indicator=self.trust_indicator) req_again = copy.deepcopy(self.req_d) req_again.start_date = "2016-05-23 08:16:09.477097" req_again.stop_date = "2016-05-23 08:16:19.477097" |