-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
38 lines (32 loc) · 867 Bytes
/
pytest.ini
File metadata and controls
38 lines (32 loc) · 867 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
35
36
37
38
[pytest]
# Pytest configuration for Process V3 E2E tests
# Test discovery
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
console_output_style = progress
addopts =
-v
--strict-markers
--tb=short
--capture=no
# Markers for categorizing tests
markers =
e2e: End-to-end integration tests
slow: Tests that take a long time to run
fast: Quick tests that run in seconds
polling: Tests that verify polling functionality
partial: Tests for partial analysis
cancellation: Tests for cancellation functionality
# Logging
log_cli = true
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S
# Test output
junit_family = xunit2
# Warnings
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning