[Tests][Fixed][KiCad 8] Version detection

This commit is contained in:
Salvador E. Tropea 2023-04-06 19:43:52 -03:00
parent 6649038d79
commit 3e40c83ed5
1 changed files with 2 additions and 2 deletions

View File

@ -25,11 +25,11 @@ if shutil.which(COVERAGE_SCRIPT) is None:
COVERAGE_SCRIPT = 'coverage3'
assert shutil.which(COVERAGE_SCRIPT) is not None
KICAD_PCB_EXT = '.kicad_pcb'
KICAD_VERSION_5_1_7 = 5001007
KICAD_VERSION_5_99 = 5099000
KICAD_VERSION_6_0_0 = 6000000
KICAD_VERSION_7_0_0 = 7000000
KICAD_VERSION_5_1_7 = 5001007
KICAD_VERSION_8_0_0 = 6099000
KICAD_VERSION_8_0_0 = 7099000
MODE_SCH = 1
MODE_PCB = 0
# Defined as True to collect real world queries