Files
kodjo e41094f908 Fixed #8
Fixed #12
Fixed #13
Fixed #14
2023-05-08 17:50:28 +02:00

23 lines
433 B
Makefile

.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 {} +