Spaces:
Sleeping
Sleeping
File size: 451 Bytes
f8381b8 e28d52e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | .PHONY: install dev test lint format clean run
install:
pip install -r requirements.txt
dev:
pip install -e ".[dev]"
test:
pytest -ra -q
test-cov:
pytest -ra --cov=. --cov-report=term-missing --cov-report=html
lint:
ruff check .
format:
ruff format .
clean:
rm -rf .pytest_cache .ruff_cache .mypy_cache htmlcov .coverage
find . -type d -name __pycache__ -exec rm -rf {} +
run:
python -c "import mealgraph; print('Module imports OK')"
|