This commit is contained in:
2025-11-08 18:59:06 +01:00
parent 6c4dfc1855
commit 02465f721e
66 changed files with 2714 additions and 743 deletions
+22
View File
@@ -0,0 +1,22 @@
.PHONY: install run test coverage clean all
install:
pip install -r requirements.txt
run:
python -m retoors.main
test:
pytest
coverage:
pytest --cov=retoors --cov-report=term-missing --cov-report=html
clean:
find . -type f -name "*.pyc" -delete
find . -type d -name "__pycache__" -exec rm -rf {} +
find . -type d -name ".pytest_cache" -exec rm -rf {} +
rm -f .coverage
rm -rf htmlcov
all: install test