esp-idf/pytest.ini

35 lines
953 B
INI
Raw Normal View History

[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-07 23:45:34 -05:00
# set traceback to "short" to prevent the overwhelming tracebacks
addopts =
--embedded-services esp,idf
2022-03-07 23:45:34 -05:00
--tb short
2022-10-25 10:09:38 -04:00
--strict-markers
2022-05-24 23:28:29 -04: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 02:59:34 -04:00
ignore::DeprecationWarning:matplotlib.*:
ignore::DeprecationWarning:google.protobuf.*:
ignore::_pytest.warning_types.PytestExperimentalApiWarning
# log related
log_cli = True
2023-10-31 07:01:40 -04:00
log_cli_level = WARNING
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 04:39:30 -05:00
## log all to `system-out` when case fail
2022-01-20 04:39:30 -05:00
junit_logging = stdout
junit_log_passing_tests = False