Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/firecracker
Path: blob/main/tests/pytest.ini
1955 views
1
[pytest]
2
; Omit verbose tracebacks, since they tend to pollute the output.
3
addopts = --tb=short
4
5
; Overwrite the default norecurseirs, which includes 'build'.
6
norecursedirs = .*
7
8
; Default timeout for tests. can be overwritten at finer grained levels.
9
timeout = 300
10
11
; Set the cache dir location to our build dir, so we don't litter the source
12
; tree.
13
cache_dir = ../build/pytest_cache
14
15
; Set logger format and level
16
log_level = INFO
17
log_format = %(asctime)s %(name)s: %(levelname)s %(message)s
18
19
log_cli_level = ERROR
20
log_cli = true
21
22