-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
19 lines (19 loc) · 899 Bytes
/
Copy pathpytest.ini
File metadata and controls
19 lines (19 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[pytest]
minversion = 6.0
required_plugins = pytest-rerunfailures pytest-timeout pytest-cov
addopts = -s -v --reruns 5 --reruns-delay 10 --only-rerun "Daemon is busy"
log_level = INFO
log_cli = True
log_cli_level = INFO
console_output_style = progress
log_file = monero_tests_python.log
log_file_level = DEBUG
log_file_format = %(asctime)s %(levelname)-8s %(name)s:%(lineno)s %(message)s
log_file_date_format = %Y-%m-%d %H:%M:%S
testpaths =
tests
markers =
unit: fast unit tests, no external dependencies
integration: slow integration tests, requires external services
not_supported: inherited test whose operation is permanently unsupported for this type; passes when it raises a "not supported" error, fails otherwise
not_implemented: inherited test whose operation is not implemented yet; applied as a non-strict xfail (xfails while it raises, xpasses once the feature lands)