-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpytest.ini
More file actions
34 lines (26 loc) · 723 Bytes
/
Copy pathpytest.ini
File metadata and controls
34 lines (26 loc) · 723 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
31
32
33
34
[pytest]
# Pytest configuration for stack tests
# Test discovery
python_files = test_*.py
python_classes = Test*
python_functions = test_
# Timeout for slow stack operations
timeout = 300
timeout_method = thread
# Output options
addopts = -v --tb=short --strict-markers
console_output_style = classic
# Markers
markers =
stack: marks tests as stack tests (deselect with -m "not stack")
# Async support
asyncio_mode = auto
# Warning behavior
filterwarnings =
error
ignore::DeprecationWarning
# Coverage (when using pytest-cov)
# addopts = --cov=app --cov-report=term-missing
# Disable parallel execution for stack tests
# Stack tests use sequential execution for diagnostic value
# addopts = -p no:xdist