-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpytest.ini
34 lines (32 loc) · 1.16 KB
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[pytest]
# only the files with prefix `pytest_` would be recognized as pytest test scripts.
python_files = pytest_*.py
# set traceback to "short" to prevent the overwhelming tracebacks
addopts = -s --embedded-services esp,idf --tb short
markers =
# env markers
esp_box_3: esp-box-3 runner
esp32_c3_lcdkit: esp32_c3_lcdkit runner
esp32_p4_box: esp32_p4_box runner
esp32_p4_function_ev_board: esp32_p4_function_ev_board runner
esp32_s3_eye: esp32_s3_eye runner
esp32_s3_lcd_ev_board: esp32_s3_lcd_ev_board runner
esp32_s3_lcd_ev_board_2: esp32_s3_lcd_ev_board runner
esp32_s3_usb_otg: esp32_s3_usb_otg runner
esp_wrover_kit: esp_wrover_kit runner
m5dial: m5dial runner
m5stack_core: m5stack_core runner
m5stack_core_2: m5stack_core_2 runner
m5stack_core_s3: m5stack_core_s3 runner
m5stack_core_s3_se: m5stack_core_s3_se runner
esp32_azure_iot_kit: esp32_azure_iot_kit runner
# log related
log_cli = True
log_cli_level = INFO
log_cli_format = %(asctime)s %(levelname)s %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S
# junit related
junit_family = xunit1
## log all to `system-out` when case fail
junit_logging = stdout
junit_log_passing_tests = False