-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpytest.ini
More file actions
30 lines (25 loc) · 768 Bytes
/
pytest.ini
File metadata and controls
30 lines (25 loc) · 768 Bytes
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]
# pytest configuration for httpmorph
# Test discovery
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
addopts =
-v
--strict-markers
--tb=short
# Test markers
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
benchmark: marks tests as benchmarks
fingerprint: marks tests that check fingerprinting
integration: marks tests that require network access
ssl: marks tests that require SSL support
proxy: marks tests that require proxy access (deselect with '-m "not proxy"')
# pytest-asyncio configuration
asyncio_default_fixture_loop_scope = function
# Ignore specific warnings
filterwarnings =
ignore::DeprecationWarning:tests.test_server