File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,9 +109,7 @@ def test_all_private(self):
109109 )
110110
111111 failures = []
112- boards = private_boards_path .rglob ("*.kicad_pcb" )
113- print ("Collected boards: " , boards )
114- for board_file in boards :
112+ for board_file in private_boards_path .rglob ("*.kicad_pcb" ):
115113 print (f"Testing private board file: { board_file } " )
116114 with self .subTest (board = board_file ):
117115 self .testData .pathToTestFile = board_file
Original file line number Diff line number Diff line change @@ -112,9 +112,7 @@ def test_All_Private(self):
112112 )
113113
114114 failures = []
115- schematics = private_schematics_path .rglob ("*.kicad_sch" )
116- print ("Collected schematics: " , schematics )
117- for schematic_file in schematics :
115+ for schematic_file in private_schematics_path .rglob ("*.kicad_sch" ):
118116 print (f"Testing private schematic file: { schematic_file } " )
119117 with self .subTest (schematic = schematic_file ):
120118 self .testData .pathToTestFile = schematic_file
You can’t perform that action at this time.
0 commit comments