chore: remove trailing whitespace from README.md line 42

This commit is contained in:
2025-11-08 17:59:06 +00:00
parent 8b61117744
commit d94fcc0507
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