Temporary disable "infineonxmc" from CI due to a broken dev-platform

This commit is contained in:
Ivan Kravets
2020-04-09 12:44:52 +03:00
parent d5ebbb99a7
commit aba2ea9746
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ PlatformIO Core 4
4.3.2 (2020-??-??)
~~~~~~~~~~~~~~~~~~
* Fixed PIO Unit Testing for Zephyr RTOS
* Fixed UnicodeDecodeError on Windows when network drive (NAS) is used (`issue #3417 <https://github.com/platformio/platformio-core/issues/3417>`_)
* Fixed an issue when saving libraries in new project results in error "No option 'lib_deps' in section" (`issue #3442 <https://github.com/platformio/platformio-core/issues/3442>`_)

View File

@ -38,7 +38,7 @@ def pytest_generate_tests(metafunc):
p = PlatformFactory.newPlatform(manifest["__pkg_dir"])
ignore_conds = [
not p.is_embedded(),
p.name == "ststm8",
p.name in ("ststm8", "infineonxmc"),
# issue with "version `CXXABI_1.3.9' not found (required by sdcc)"
"linux" in util.get_systype() and p.name == "intel_mcs51",
]