mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 18:17:13 +02:00
Disable STM8 from CI tests
This commit is contained in:
@ -34,11 +34,13 @@ def pytest_generate_tests(metafunc):
|
|||||||
# dev/platforms
|
# dev/platforms
|
||||||
for manifest in PlatformManager().get_installed():
|
for manifest in PlatformManager().get_installed():
|
||||||
p = PlatformFactory.newPlatform(manifest['__pkg_dir'])
|
p = PlatformFactory.newPlatform(manifest['__pkg_dir'])
|
||||||
if not p.is_embedded():
|
ignore_conds = [
|
||||||
continue
|
not p.is_embedded(),
|
||||||
# issue with "version `CXXABI_1.3.9' not found (required by sdcc)"
|
p.name == "ststm8",
|
||||||
if "linux" in util.get_systype() and p.name in ("intel_mcs51",
|
# issue with "version `CXXABI_1.3.9' not found (required by sdcc)"
|
||||||
"ststm8"):
|
"linux" in util.get_systype() and p.name == "intel_mcs51"
|
||||||
|
]
|
||||||
|
if any(ignore_conds):
|
||||||
continue
|
continue
|
||||||
examples_dir = join(p.get_dir(), "examples")
|
examples_dir = join(p.get_dir(), "examples")
|
||||||
assert isdir(examples_dir)
|
assert isdir(examples_dir)
|
||||||
|
Reference in New Issue
Block a user