feat: Skip real paths test in CI; mark subproject commits as dirty

This commit is contained in:
David Montero Crespo 2026-04-11 15:49:32 -03:00
parent 830aa138ae
commit d4a48e6e1e
1 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,7 @@ or:
"""
import importlib
import os
import sys
import tempfile
import shutil
@ -69,9 +70,14 @@ def make_compiler_with_real_paths() -> ESPIDFCompiler:
return comp
@unittest.skipIf(
os.environ.get('CI') == 'true',
'Requires local Arduino libraries installed on Windows — skipped in CI',
)
class TestRealPathsSSD1306(unittest.TestCase):
"""
Uses actual library directories on this machine to reproduce the build failure.
Only runs locally (not in CI) because it needs real Arduino library paths.
"""
def setUp(self):