Spaces:
Configuration error
Configuration error
File size: 393 Bytes
f679000 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | .PHONY: install test lint format clean
install:
pip install -e ".[dev]"
test:
pytest
test-cov:
pytest --cov --cov-report=html --cov-report=term
lint:
ruff check src/ tests/
format:
ruff format src/ tests/
type-check:
mypy src/amcp --ignore-missing-imports
clean:
rm -rf build/ dist/ *.egg-info .pytest_cache .coverage htmlcov/
find . -type d -name __pycache__ -exec rm -rf {} +
|