From aba2ea97465c45d4538eb6752d921865a79442bf Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 9 Apr 2020 12:44:52 +0300 Subject: [PATCH] Temporary disable "infineonxmc" from CI due to a broken dev-platform --- HISTORY.rst | 1 + tests/test_examples.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 4035d7af..acaa6ef3 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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 `_) * Fixed an issue when saving libraries in new project results in error "No option 'lib_deps' in section" (`issue #3442 `_) diff --git a/tests/test_examples.py b/tests/test_examples.py index b0d0dfcb..ea271460 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -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", ]