mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 18:17:13 +02:00
Skip mbed legacy examples from PIO Core CI
This commit is contained in:
@ -48,6 +48,8 @@ def pytest_generate_tests(metafunc):
|
|||||||
for root, _, files in os.walk(examples_dir):
|
for root, _, files in os.walk(examples_dir):
|
||||||
if "platformio.ini" not in files or ".skiptest" in files:
|
if "platformio.ini" not in files or ".skiptest" in files:
|
||||||
continue
|
continue
|
||||||
|
if "mbed-legacy-examples" in root:
|
||||||
|
continue
|
||||||
group = os.path.basename(root)
|
group = os.path.basename(root)
|
||||||
if "-" in group:
|
if "-" in group:
|
||||||
group = group.split("-", 1)[0]
|
group = group.split("-", 1)[0]
|
||||||
|
Reference in New Issue
Block a user