remove all sp and bw320 test cases, remove p3p and coe for 452
This commit is contained in:
+6
-11
@@ -245,19 +245,14 @@ def scan_targets(target_dir):
|
||||
#print(f"[scanner] skip (no test_id): {parent_name}/{filename}")
|
||||
continue
|
||||
|
||||
# Remove SP testcases from all ROT
|
||||
if parsed["sp"]:
|
||||
#print(f"[scanner] skip (SP test): {parent_name}/{filename}")
|
||||
continue
|
||||
|
||||
# Remove P2P testcases with no ROT and BW320
|
||||
if parsed["interference"] == "P2P" and not parsed["rotation"] and parsed["bandwidth"] == "BW320":
|
||||
#print(f"[scanner] skip (P2P no ROT BW320): {parent_name}/{filename}")
|
||||
# Remove all SP testcases and BW320 testcases
|
||||
if parsed["sp"] or parsed["bandwidth"] == "BW320":
|
||||
#print(f"[scanner] skip (SP test or BW320): {parent_name}/{filename}")
|
||||
continue
|
||||
|
||||
#Remove P3P testcases for CGW452
|
||||
if parsed["interference"] == "P3P" and parsed["device"] == "CGW452":
|
||||
#print(f"[scanner] skip (P3P CGW452): {parent_name}/{filename}")
|
||||
#Remove P3P and COE testcases for CGW452
|
||||
if parsed["interference"] in ["P3P", "COE"] and parsed["device"] == "CGW452":
|
||||
#print(f"[scanner] skip ({parsed['interference']} CGW452): {parent_name}/{filename}")
|
||||
continue
|
||||
|
||||
#print( f"[scanner] found: {parent_name}/{filename} -> test_id={parsed['test_id']}")
|
||||
|
||||
Reference in New Issue
Block a user