-
Notifications
You must be signed in to change notification settings - Fork 21
/
pytest.ini
30 lines (28 loc) · 1.27 KB
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[pytest]
markers =
disruptive: This has side effect with possible impact on other tests
performance: Performance tests have unique needs
sandbag: Either slow, deployment sensitive or requires complex setup
fuzz: Exhaustive test cases that are skipped by default
smoke: Build verification test
flaky: Random failures with unclear reason
required_capabilities(capability1, capability2, ...): List of capabilities that are required for running this test
issue: Reference to covered issue
nopersistence: Tests incompatible with persistence plugin
skipif_devrelease: Mark tests that should not run on alpha builds
filterwarnings =
ignore: WARNING the new order is not taken into account:UserWarning
ignore::urllib3.exceptions.InsecureRequestWarning
ignore::cryptography.utils.CryptographyDeprecationWarning
ignore: Use ProtectionLevel enum instead:DeprecationWarning
ignore: Use protection_level parameter instead:DeprecationWarning
ignore: pkg_resources is deprecated as an API:DeprecationWarning
log_format=%(asctime)s %(levelname)s:%(name)s:%(message)s
log_date_format=%H:%M:%S %z
log_level=INFO
junit_logging=all
junit_family=xunit2
junit_log_passing_tests=0
asyncio_mode=auto
addopts = --last-failed-no-failures=none
#addopts = --pdbcls=IPython.terminal.debugger:Pdb