-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
29 lines (28 loc) · 786 Bytes
/
Copy pathpytest.ini
File metadata and controls
29 lines (28 loc) · 786 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
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--strict-markers
--tb=short
--cov=backend
--cov=ml/src
--cov-report=html:ml/htmlcov
--cov-report=term-missing
--cov-report=xml
--ignore=ml/src/curelens_ai.egg-info
--ignore=frontend
markers =
unit: Unit tests
integration: Integration tests
e2e: End-to-end tests
system: System tests (non-functional requirements)
performance: Performance and response time tests
security: Security and authentication tests
error_handling: Error handling and reliability tests
slow: Slow running tests
ml: ML model tests
requires_models: Tests that require trained ML models to be loaded
asyncio_mode = auto