pytest.ini 537 B

12345678910111213141516171819
  1. [pytest]
  2. addopts = -s -p no:pytest-embedded
  3. # log related
  4. log_cli = True
  5. log_cli_level = INFO
  6. log_cli_format = %(asctime)s %(levelname)s %(message)s
  7. log_cli_date_format = %Y-%m-%d %H:%M:%S
  8. # junit related
  9. junit_family = xunit1
  10. ## log all to `system-out` when case fail
  11. junit_logging = stdout
  12. junit_log_passing_tests = False
  13. markers =
  14. test_app_copy: specify relative path of the app to copy, and the prefix of the destination directory name
  15. idf_copy: specify the prefix of the destination directory where IDF should be copied