Medium Infrastructure Issue
Makefile issues and missing targets.
File: Makefile
Severity: MEDIUM
Impact: Development workflow problems
Issues Found:
- Missing common targets (clean, test, lint)
- Incorrect paths
- Missing dependencies
Suggested Fix
Update Makefile:
.PHONY: test clean lint
test:
pytest
lint:
flake8 src/
clean:
find . -type f -name "*.pyc" -delete
find . -type d -name "__pycache__" -delete
install:
pip install -e .
Medium Infrastructure Issue
Makefile issues and missing targets.
File: Makefile
Severity: MEDIUM
Impact: Development workflow problems
Issues Found:
Suggested Fix
Update Makefile: