pytest.ini 502 B

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