-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpytest.ini
More file actions
31 lines (26 loc) · 788 Bytes
/
pytest.ini
File metadata and controls
31 lines (26 loc) · 788 Bytes
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
[pytest]
# only the files with prefix `pytest_` would be recognized as pytest test scripts.
python_files = pytest_*.py
norecursedirs = managed_components
# set traceback to "short" to prevent the overwhelming tracebacks --embedded-services serial,esp,idf
addopts =
-s -vv
--tb short
--strict-markers
--skip-check-coredump y
--logfile-extension ".txt"
--check-duplicates y
markers =
# target markers
esp32: support esp32 target
esp32s3: support esp32s3 target
esp32p4: support esp32p4 target
stm32: support stm32 target
pi_pico: support pi_pico target
linux: support linux target
zephyr: support zephyr target
# 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