forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
19 lines (16 loc) · 869 Bytes
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[pytest]
junit_family=xunit1
addopts = --strict-markers
markers =
load: Load tests
tag(name): Tag tests with Go-like semantics
# Ignore setup and teardown for the timeout
timeout_func_only = True
# Fail on deprecation warnings
filterwarnings =
error::DeprecationWarning
# Ignore distutil Version class deprecation in the compose package until it can be upgraded not to use them.
ignore:distutils Version classes are deprecated. Use packaging.version instead.:DeprecationWarning:.*compose.*
ignore:distutils Version classes are deprecated. Use packaging.version instead.:DeprecationWarning:.*docker.*
ignore:HTTPResponse.getheaders\(\) is deprecated and will be removed in urllib3 v2.1.0. Instead access HTTPResponse.headers directly.:DeprecationWarning
ignore:The 'warn' method is deprecated, use 'warning' instead:DeprecationWarning