Spaces:
Sleeping
Sleeping
| [pytest] | |
| testpaths = tests | |
| python_files = test_*.py | |
| python_classes = Test | |
| python_functions = test_* | |
| asyncio_mode = auto | |
| pythonpath = . | |
| addopts = | |
| -v | |
| --tb=short | |
| --cov=. | |
| --cov-report=term-missing | |
| --cov-report=html | |
| --cov-fail-under=80 | |
| --no-cov-on-fail | |
| # Ignore some directories from coverage | |
| [coverage:run] | |
| omit = | |
| tests/* | |
| venv/* | |
| */site-packages/* | |
| .pytest_cache/* | |
| __pycache__/* | |
| .venv/* | |
| [coverage:report] | |
| exclude_lines = | |
| pragma: no cover | |
| def __repr__ | |
| if __name__ == .__main__.: | |
| raise NotImplementedError | |
| pass | |
| raise ImportError |