[pytest]1; Omit verbose tracebacks, since they tend to pollute the output.2addopts = --tb=short34; Overwrite the default norecurseirs, which includes 'build'.5norecursedirs = .*67; Default timeout for tests. can be overwritten at finer grained levels.8timeout = 300910; Set the cache dir location to our build dir, so we don't litter the source11; tree.12cache_dir = ../build/pytest_cache1314; Set logger format and level15log_level = INFO16log_format = %(asctime)s %(name)s: %(levelname)s %(message)s1718log_cli_level = ERROR19log_cli = true202122