X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Finput_data_parser.py;h=6bb15d7c93e27dc60d82d5adbbd47fccb77fcc91;hb=3055ecfbb0b619318f7cfbbb18ba142968b4c617;hp=01de40cc14ba2a8f436711ca11cecd973b150d2c;hpb=c259556dd54f0542b0076a895114882dca52de6c;p=csit.git diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 01de40cc14..6bb15d7c93 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Cisco and/or its affiliates. +# Copyright (c) 2023 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -1098,11 +1098,13 @@ class ExecutionChecker(ResultVisitor): if self._kw_name is None: return elif self._kw_name.count("Run Telemetry On All Duts"): - self._telemetry_kw_counter += 1 - self._get_telemetry(msg) + if self._process_oper: + self._telemetry_kw_counter += 1 + self._get_telemetry(msg) elif self._kw_name.count("Show Runtime On All Duts"): - self._sh_run_counter += 1 - self._get_show_run(msg) + if self._process_oper: + self._sh_run_counter += 1 + self._get_show_run(msg) elif self._kw_name.count("Show Vpp Version On All Duts"): if not self._version: self._get_vpp_version(msg)