2024-12-02 10:47:32 +08:00
|
|
|
# SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
|
2023-07-31 12:49:08 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
"""
|
|
|
|
|
Pytest Related Constants. Don't import third-party packages here.
|
|
|
|
|
"""
|
2025-03-12 14:59:04 +02:00
|
|
|
|
2023-07-31 12:49:08 +08:00
|
|
|
import typing as t
|
2023-06-13 17:12:55 +08:00
|
|
|
|
2024-12-02 10:47:32 +08:00
|
|
|
SUPPORTED_TARGETS = [
|
|
|
|
|
'esp32',
|
|
|
|
|
'esp32s2',
|
|
|
|
|
'esp32c3',
|
|
|
|
|
'esp32s3',
|
|
|
|
|
'esp32c2',
|
|
|
|
|
'esp32c6',
|
|
|
|
|
'esp32h2',
|
|
|
|
|
'esp32p4',
|
|
|
|
|
'esp32c5',
|
|
|
|
|
'esp32c61',
|
|
|
|
|
]
|
2023-07-31 12:49:08 +08:00
|
|
|
PREVIEW_TARGETS: t.List[str] = [] # this PREVIEW_TARGETS excludes 'linux' target
|
2025-06-13 14:30:39 +02:00
|
|
|
|
2024-05-09 10:32:52 +02:00
|
|
|
DEFAULT_LOGDIR = 'pytest-embedded'
|
2023-07-31 12:49:08 +08:00
|
|
|
|
2024-11-26 11:11:48 +01:00
|
|
|
# by default the timeout is 1h, for some special cases we need to extend it
|
|
|
|
|
TIMEOUT_4H_MARKERS = [
|
|
|
|
|
'ethernet_stress',
|
|
|
|
|
]
|