Spaces:
Build error
Build error
| [tool:pytest] | |
| testpaths = tests | |
| python_files = test_*.py | |
| python_classes = Test* | |
| python_functions = test_* | |
| addopts = | |
| -v | |
| --tb=short | |
| --strict-markers | |
| --disable-warnings | |
| # Coverage options | |
| [coverage:run] | |
| source = src | |
| omit = | |
| */tests/* | |
| */test_* | |
| */__pycache__/* | |
| [coverage:report] | |
| exclude_lines = | |
| pragma: no cover | |
| def __repr__ | |
| raise AssertionError | |
| raise NotImplementedError | |
| if __name__ == .__main__.: | |
| if TYPE_CHECKING: | |
| @abstractmethod | |