naazimsnh02's picture
Initial deployment: Autonomous AI agent for code modernization
ec4aa90
raw
history blame contribute delete
570 Bytes
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--strict-markers
--cov=src
--cov-report=html
--cov-report=term-missing
markers =
integration: Integration tests (deselect with '-m "not integration"')
slow: Slow tests (deselect with '-m "not slow"')
[coverage:run]
source = src
omit =
*/tests/*
*/__pycache__/*
*/venv/*
*/env/*
[coverage:report]
precision = 2
show_missing = True
skip_covered = False
[coverage:html]
directory = htmlcov