.PHONY: test lint

test: ## Run Python tests
	@echo "pytest $(if $(MODULE),$(MODULE),all)"

lint: ## Run Python lint
	@echo "ruff check ."
