- Enhance .gitignore with comprehensive Python patterns - Improve README with better setup and testing instructions - Add test infrastructure: * Test requirements file * Environment setup script * Test runner script * Comprehensive test suite * Coverage configuration
14 lines
215 B
INI
14 lines
215 B
INI
[run]
|
|
source = .
|
|
omit =
|
|
*/venv/*
|
|
*/tests/*
|
|
*/.venv/*
|
|
|
|
[report]
|
|
exclude_lines =
|
|
pragma: no cover
|
|
def __repr__
|
|
raise AssertionError
|
|
raise NotImplementedError
|
|
if __name__ == .__main__.: |