We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 805d39d + a4a3ae9 commit 59da1a2Copy full SHA for 59da1a2
1 file changed
kcidev/subcommands/results/parser.py
@@ -221,6 +221,9 @@ def filter_out_by_status(status, filter):
221
222
def filter_out_by_hardware(test, filter_data):
223
# Check if the hardware name is in the list
224
+ if "hardware" not in filter_data:
225
+ return False
226
+
227
hardware_list = filter_data["hardware"]
228
if test["environment_misc"]["platform"] in hardware_list:
229
return False
0 commit comments