Skip to content

Commit 28bca48

Browse files
committed
Ignore examples for ststm8 on Linux
1 parent 69065d8 commit 28bca48

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_examples.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ def pytest_generate_tests(metafunc):
3737
if not p.is_embedded():
3838
continue
3939
# issue with "version `CXXABI_1.3.9' not found (required by sdcc)"
40-
if "linux" in util.get_systype() and p.name == "intel_mcs51":
40+
if "linux" in util.get_systype() and p.name in ("intel_mcs51",
41+
"ststm8"):
4142
continue
4243
examples_dir = join(p.get_dir(), "examples")
4344
assert isdir(examples_dir)

0 commit comments

Comments
 (0)