esp-idf/pytest.ini

36 wiersze
959 B
INI

[pytest]
# only the files with prefix `pytest_` would be recognized as pytest test scripts.
python_files = pytest_*.py
# ignore PytestExperimentalApiWarning for record_xml_attribute
2022-03-08 04:45:34 +00:00
# set traceback to "short" to prevent the overwhelming tracebacks
addopts =
2024-04-17 09:18:15 +00:00
-s -vv
--embedded-services esp,idf
2022-03-08 04:45:34 +00:00
--tb short
2022-10-25 14:09:38 +00:00
--strict-markers
2022-05-25 03:28:29 +00:00
--skip-check-coredump y
--logfile-extension ".txt"
--check-duplicates y
--ignore-glob */managed_components/*
--ignore pytest_embedded_log
# ignore DeprecationWarning
filterwarnings =
2022-05-18 06:59:34 +00:00
ignore::DeprecationWarning:matplotlib.*:
ignore::DeprecationWarning:google.protobuf.*:
ignore::_pytest.warning_types.PytestExperimentalApiWarning
# log related
log_cli = True
2024-04-17 09:18:15 +00:00
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
2022-01-20 09:39:30 +00:00
## log all to `system-out` when case fail
2022-01-20 09:39:30 +00:00
junit_logging = stdout
junit_log_passing_tests = False