Added more information when a board test is missing
- During tests migration to a new KiCad
This commit is contained in:
parent
a72aac4e54
commit
4253368dd8
|
|
@ -134,9 +134,9 @@ class TestContext(object):
|
||||||
self.sch_file = os.path.abspath(os.path.join(self.get_board_dir(), self.board_name + KICAD_SCH_EXT))
|
self.sch_file = os.path.abspath(os.path.join(self.get_board_dir(), self.board_name + KICAD_SCH_EXT))
|
||||||
logging.info('KiCad file: '+self.board_file)
|
logging.info('KiCad file: '+self.board_file)
|
||||||
if self.mode == MODE_PCB:
|
if self.mode == MODE_PCB:
|
||||||
assert os.path.isfile(self.board_file)
|
assert os.path.isfile(self.board_file), self.board_file
|
||||||
else:
|
else:
|
||||||
assert os.path.isfile(self.sch_file)
|
assert os.path.isfile(self.sch_file), self.sch_file
|
||||||
|
|
||||||
def _get_yaml_dir(self):
|
def _get_yaml_dir(self):
|
||||||
this_dir = os.path.dirname(os.path.realpath(__file__))
|
this_dir = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue