pytest.ini 384 Bytes
Newer Older
Titus von Koeller's avatar
Titus von Koeller committed
1
2
3
4
5
6
7
8
9
[pytest]
addopts = -rP
    ; --cov=bitsandbytes
    ; # contexts: record which test ran which line; can be seen in html coverage report
    ; --cov-context=test
    ; --cov-report html

log_cli = True
log_cli_level = INFO
Aarni Koskela's avatar
Aarni Koskela committed
10
11
12
13
log_file = logs/pytest.log
markers =
    benchmark: mark test as benchmark
    slow: mark test as slow
14
    deprecated: mark test as covering a deprecated feature