-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
33 lines (28 loc) · 818 Bytes
/
pytest.ini
File metadata and controls
33 lines (28 loc) · 818 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
[pytest]
# Enable Allure reporting by default
addopts = --alluredir=allure-results
# Test file patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Set Python path to include the current directory
pythonpath = .
# Log level
log_cli = true
log_cli_level = INFO
# Asyncio configuration
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
# Test markers
markers =
api: marks tests as API tests
integration: marks tests as integration tests
slow: marks tests as slow running
health: Health check tests
chat: Chat functionality tests
memory: Memory persistence tests
performance: Performance benchmark tests
error: Error handling tests
critical: Critical severity tests
normal: Normal severity tests
minor: Minor severity tests