Fixed #12
Fixed #13
Fixed #14
This commit is contained in:
2023-05-08 17:50:28 +02:00
parent 21a397861a
commit e41094f908
95 changed files with 12168 additions and 260 deletions
+23
View File
@@ -0,0 +1,23 @@
.PHONY: test
test:
pytest
coverage:
coverage run --source=src -m pytest
coverage html
clean:
rm -rf build
rm -rf htmlcov
rm -rf .coverage
rm -rf docs/build
rm -rf docs/source/_build
rm -rf prof
rm -rf tests/prof
rm -rf tests/build
rm -rf Untitled*.ipynb
rm -rf .ipynb_checkpoints
find . -name '.pytest_cache' -exec rm -rf {} +
find . -name '__pycache__' -exec rm -rf {} +
find . -name 'debug.txt' -exec rm -rf {} +