Skip to content

Commit 679e704

Browse files
committed
tests: Clean up some unnecessary logging
1 parent 5f1618c commit 679e704

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

tests/test_board.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

tests/test_schematic.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)