Spaces:
Runtime error
Runtime error
File size: 311 Bytes
7ab7df1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | [pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
--cov=.
--cov-report=term-missing
--cov-report=html
--cov-fail-under=80
--cov-config=.coveragerc
-v
--tb=short
norecursedirs = env .git __pycache__ vectorstore pdf tests
|