-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMakefile
More file actions
137 lines (118 loc) · 3.58 KB
/
Makefile
File metadata and controls
137 lines (118 loc) · 3.58 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# cchooks Makefile - Development utilities with uv
# Project configuration
PACKAGE_NAME := cchooks
SRC_DIR := src
TEST_DIR := tests
COVERAGE_DIR := htmlcov
DIST_DIR := dist
# Default target
.PHONY: help
help: ## Show this help message
@echo "cchooks Development Commands"
@echo "=============================="
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "%-15s %s\n", $$1, $$2}' $(MAKEFILE_LIST)
# Environment setup
.PHONY: setup
setup: ## Install development dependencies and setup environment
@echo "Setting up development environment..."
@uv sync
@echo "Development environment ready!"
.PHONY: install-uv
install-uv: ## Install uv package manager (if not already installed)
@if command -v uv >/dev/null 2>&1; then \
echo "uv is already installed: $$(uv --version)"; \
else \
echo "Installing uv package manager..."; \
curl -LsSf https://astral.sh/uv/install.sh | sh; \
echo "uv installed successfully!"; \
fi
.PHONY: lock
lock: ## Update dependency lockfile
@echo "Updating lockfile..."
@uv lock
@echo "Lockfile updated!"
# Testing targets
.PHONY: test
test: ## Run the complete test suite with coverage
@echo "Running test suite..."
@uv run pytest $(TEST_DIR)/ -v \
--cov=$(SRC_DIR)/$(PACKAGE_NAME) \
--cov-report=term-missing \
--cov-report=html \
--cov-report=xml
@echo "Test suite complete!"
@echo "Coverage report: $(COVERAGE_DIR)/index.html"
.PHONY: test-quick
test-quick: ## Run tests without coverage (faster)
@echo "Running quick tests..."
@uv run pytest $(TEST_DIR)/ -v
@echo "Quick tests complete!"
# Linting and formatting
.PHONY: lint
lint: ## Run linting with ruff
@echo "Running linting..."
@uv run ruff check $(SRC_DIR)/
@echo "Linting complete!"
.PHONY: lint-fix
lint-fix: ## Run linting and auto-fix issues
@echo "Running linting with auto-fix..."
@uv run ruff check $(SRC_DIR)/ --fix
@echo "Linting fixes applied!"
.PHONY: format
format: ## Format code with ruff
@echo "Formatting code..."
@uv run ruff format $(SRC_DIR)/
@echo "Code formatted!"
.PHONY: format-check
format-check: ## Check code formatting
@echo "Checking code formatting..."
@uv run ruff format --check $(SRC_DIR)/
@echo "Formatting check complete!"
# Type checking
.PHONY: type-check
type-check: ## Run type checking with pyright
@echo "Running type checks..."
@uv run pyright $(SRC_DIR)/
@echo "Type checks complete!"
# Build and distribution
.PHONY: build
build: ## Build the package
@echo "Building package..."
@uv build
@echo "Build complete!"
@echo "Built files in $(DIST_DIR)/"
.PHONY: check
check: lint type-check format-check test ## Run all checks (lint, type-check, format-check, test)
@echo "All checks passed!"
# Cleanup
.PHONY: clean
clean: ## Clean build artifacts and cache
@echo "Cleaning up..."
@rm -rf $(DIST_DIR)/
@rm -rf $(COVERAGE_DIR)/
@rm -rf .pytest_cache/
@rm -rf .ruff_cache/
@rm -rf .coverage
@rm -rf coverage.xml
@find . -type d -name "__pycache__" -exec rm -rf {} +
@find . -type f -name "*.pyc" -delete
@echo "Cleanup complete!"
.PHONY: clean-all
clean-all: clean ## Clean everything including virtual environment
@echo "Cleaning everything..."
@rm -rf .venv/
@echo "Complete cleanup!"
# Development utilities
.PHONY: install-dev
install-dev: ## Install package in development mode
@echo "Installing in development mode..."
@uv pip install -e "."
@echo "Development installation complete!"
.PHONY: deps-tree
deps-tree: ## Show dependency tree
@echo "Dependency tree:"
@uv tree
# Release preparation
.PHONY: release-check
release-check: check clean build ## Full release preparation check
@echo "Release check complete! Ready to publish."