mirror of
https://github.com/espressif/esp-idf.git
synced 2026-08-18 06:35:35 +03:00
Migrate idf.py and its actions to the shared esp-pylib library: - add esp-pylib (and esp-pylib[ide]) to the core/ide requirements - base FatalError on esp_pylib.errors.FatalError, keeping the idf.py ctx cleanup - replace the local raw-ANSI helpers (red_print/yellow_print/print_warning/ color_print) with esp_pylib.logger.log (warn/err/note/hint) across the idf.py actions - install esp_pylib exception reporting at the idf.py entry point and silence the logger during shell completion - update affected tests for the new prefixes/line wrapping - add normalize_output() helper and unify terminal env in conftest to handle Rich line-wrapping in CI assertions Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
911 B
Python
29 lines
911 B
Python
# SPDX-FileCopyrightText: 2026 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
import os
|
|
import typing
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True, scope='session')
|
|
def idf_py_terminal_env() -> typing.Generator[None, None, None]:
|
|
"""Set terminal env so idf.py subprocesses produce consistent output.
|
|
|
|
COLUMNS=200 raises Rich's non-TTY default of 80, preventing most line wrapping.
|
|
NO_COLOR=1 strips ANSI escape codes.
|
|
"""
|
|
keys = ('COLUMNS', 'LINES', 'NO_COLOR', 'FORCE_COLOR', 'PY_COLORS', 'TERM')
|
|
saved = {k: os.environ.get(k) for k in keys}
|
|
os.environ['COLUMNS'] = '200'
|
|
os.environ['LINES'] = '40'
|
|
os.environ['NO_COLOR'] = '1'
|
|
for k in ('FORCE_COLOR', 'PY_COLORS'):
|
|
os.environ.pop(k, None)
|
|
yield
|
|
for k, v in saved.items():
|
|
if v is None:
|
|
os.environ.pop(k, None)
|
|
else:
|
|
os.environ[k] = v
|