-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
37 lines (30 loc) · 895 Bytes
/
Copy pathpytest.ini
File metadata and controls
37 lines (30 loc) · 895 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
[pytest]
# Pytest configuration
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Minimum Python version
minversion = 6.0
# Test output options
addopts =
-v
--strict-markers
--tb=short
--disable-warnings
# Coverage options (if pytest-cov is installed)
# addopts = --cov=controllers --cov=models --cov-report=html
# Markers for organizing tests
markers =
unit: Unit tests for individual functions
integration: Integration tests across components
slow: Tests that take significant time
auth: Authentication and security tests
lineage: Lineage traversal tests
investigation: Investigation pipeline tests
webhook: Webhook handling tests
# Test timeout (requires pytest-timeout)
# timeout = 30
# Database configuration
# These values should be overridden in conftest.py
testpaths = tests