-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
310 lines (271 loc) · 11.2 KB
/
Copy pathMakefile
File metadata and controls
310 lines (271 loc) · 11.2 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
# Supported Python versions
PYTHON_VERSIONS = 3.10 3.11 3.12 3.13 3.14
DEFAULT_PYTHON = 3.10
# Install dependencies
.PHONY: install
install:
@uv sync
@find . | grep -E "(__pycache__|\\.pyc|\\.pyo|\\.pytest_cache|\\.ruff_cache|\\.mypy_cache)" | xargs rm -rf
# Install dev dependencies
.PHONY: install-dev
install-dev:
@uv sync --extra dev
@find . | grep -E "(__pycache__|\\.pyc|\\.pyo|\\.pytest_cache|\\.ruff_cache|\\.mypy_cache)" | xargs rm -rf
# Update dependencies
.PHONY: lock
lock:
@uv lock
@find . | grep -E "(__pycache__|\\.pyc|\\.pyo|\\.pytest_cache|\\.ruff_cache|\\.mypy_cache)" | xargs rm -rf
# Upgrade dependencies
.PHONY: upgrade
upgrade:
@uv lock --upgrade
@uv sync --all-extras
@find . | grep -E "(__pycache__|\\.pyc|\\.pyo|\\.pytest_cache|\\.ruff_cache|\\.mypy_cache)" | xargs rm -rf
# Start example-app
.PHONY: start-example
start-example:
@COMPOSE_BAKE=true PYTHON_VERSION=$(DEFAULT_PYTHON) docker compose up --build two-fast-auth-example
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
.PHONY: run-example
run-example:
@COMPOSE_BAKE=true docker compose build two-fast-auth-example
@docker compose up two-fast-auth-example
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Stop
.PHONY: stop
stop:
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Restart
.PHONY: restart
restart: stop start-example
# Lint code
.PHONY: lint
lint:
@COMPOSE_BAKE=true docker compose run --rm --no-deps two-fast-auth sh -c "echo 'Formatting w/ Ruff...' ; echo '' ; ruff format . ; echo '' ; echo '' ; echo 'Linting w/ Ruff...' ; echo '' ; ruff check . ; echo '' ; echo '' ; echo 'Type checking w/ Mypy...' ; echo '' ; mypy . ; echo '' ; echo '' ; echo 'Finding dead code w/ Vulture...' ; echo '' ; vulture"
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Fix code
.PHONY: fix
fix:
@echo "Fixing formatting w/ Ruff..."
@echo ''
@uv run ruff check --fix .
@find . | grep -E "(__pycache__|\\.pyc|\\.pyo|\\.pytest_cache|\\.ruff_cache|\\.mypy_cache)" | xargs rm -rf
# Find dead code with Vulture
.PHONY: vulture
vulture:
@echo "Finding dead code with Vulture..."
@echo ''
# @uv run vulture
# @uv run vulture --verbose
@uv run vulture vulture_whitelist.py
@find . | grep -E "(__pycache__|\.pyc|\.pyo|\.pytest_cache|\.ruff_cache|\.mypy_cache)" | xargs rm -rf
# Security scan with Bandit
.PHONY: bandit
bandit:
@echo "Running Bandit security scan..."
@echo ''
@uv run bandit -r two_fast_auth -ll
@find . | grep -E "(__pycache__|\.pyc|\.pyo|\.pytest_cache|\.ruff_cache|\.mypy_cache)" | xargs rm -rf
# Check dependencies with Safety
.PHONY: safety
safety:
@echo "Checking dependencies with Safety..."
@echo ''
@uv run safety scan
@find . | grep -E "(__pycache__|\.pyc|\.pyo|\.pytest_cache|\.ruff_cache|\.mypy_cache)" | xargs rm -rf
# Audit dependencies with pip-audit
.PHONY: pip-audit
pip-audit:
@echo "Auditing dependencies with pip-audit..."
@echo ''
@uv run pip-audit
@find . | grep -E "(__pycache__|\.pyc|\.pyo|\.pytest_cache|\.ruff_cache|\.mypy_cache)" | xargs rm -rf
# Analyze code complexity with Radon
.PHONY: radon
radon:
@echo "Analyzing code complexity with Radon..."
@echo ''
@echo "Cyclomatic Complexity:"
@uv run radon cc two_fast_auth -nc
@echo ''
@echo "Maintainability Index:"
@uv run radon mi two_fast_auth -nc
@echo ''
@echo "Raw Metrics:"
@uv run radon raw two_fast_auth
@find . | grep -E "(__pycache__|\.pyc|\.pyo|\.pytest_cache|\.ruff_cache|\.mypy_cache)" | xargs rm -rf
# Check complexity thresholds with Xenon
.PHONY: xenon
xenon:
@echo "Checking complexity thresholds with Xenon..."
@echo ''
@uv run xenon two_fast_auth --max-absolute B --max-modules A --max-average A
@find . | grep -E "(__pycache__|\.pyc|\.pyo|\.pytest_cache|\.ruff_cache|\.mypy_cache)" | xargs rm -rf
# Analyze dependencies with Deptry
.PHONY: deptry
deptry:
@echo "Analyzing dependencies with Deptry..."
@echo ''
@uv run deptry .
@find . | grep -E "(__pycache__|\.pyc|\.pyo|\.pytest_cache|\.ruff_cache|\.mypy_cache)" | xargs rm -rf
# Static analysis with Semgrep
.PHONY: semgrep
semgrep:
@echo "Running Semgrep static analysis..."
@echo ''
@uv run semgrep --config=auto two_fast_auth
@find . | grep -E "(__pycache__|\.pyc|\.pyo|\.pytest_cache|\.ruff_cache|\.mypy_cache)" | xargs rm -rf
# Run all security checks
.PHONY: security
security: bandit safety pip-audit
@echo "All security checks completed."
# Run all code quality checks
.PHONY: quality
quality: lint vulture radon xenon
@echo "All code quality checks completed."
# Run all analysis tools
.PHONY: analysis
analysis: deptry semgrep
@echo "All analysis tools completed."
# Run all checks (linting, security, quality, and analysis)
.PHONY: check-all
check-all: lint security quality analysis
@echo "All checks completed."
# Run tests (default Python version)
.PHONY: test
test:
@COMPOSE_BAKE=true PYTHON_VERSION=$(DEFAULT_PYTHON) docker compose run --rm --build two-fast-auth pytest -v --cov=.
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Run All Python versions
.PHONY: test-all
test-all: test-3.10 test-3.11 test-3.12 test-3.13 test-3.14
# Python 3.10
.PHONY: test-3.10
test-3.10:
@docker compose down -v two-fast-auth
@COMPOSE_BAKE=true PYTHON_VERSION=3.10 docker compose build two-fast-auth
@PYTHON_VERSION=3.10 docker compose run --rm two-fast-auth pytest -v --cov=.
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Python 3.11
.PHONY: test-3.11
test-3.11:
@docker compose down -v two-fast-auth
@COMPOSE_BAKE=true PYTHON_VERSION=3.11 docker compose build two-fast-auth
@PYTHON_VERSION=3.11 docker compose run --rm two-fast-auth pytest -v --cov=.
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Python 3.12
.PHONY: test-3.12
test-3.12:
@docker compose down -v two-fast-auth
@COMPOSE_BAKE=true PYTHON_VERSION=3.12 docker compose build two-fast-auth
@PYTHON_VERSION=3.12 docker compose run --rm two-fast-auth pytest -v --cov=.
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Python 3.13
.PHONY: test-3.13
test-3.13:
@docker compose down -v two-fast-auth
@COMPOSE_BAKE=true PYTHON_VERSION=3.13 docker compose build two-fast-auth
@PYTHON_VERSION=3.13 docker compose run --rm two-fast-auth pytest -v --cov=.
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Python 3.14
.PHONY: test-3.14
test-3.14:
@docker compose down -v two-fast-auth
@COMPOSE_BAKE=true PYTHON_VERSION=3.14 docker compose build two-fast-auth
@PYTHON_VERSION=3.14 docker compose run --rm two-fast-auth pytest -v --cov=.
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Stress Test
.PHONY: stress-test
stress-test:
@COMPOSE_BAKE=true docker compose up --build -d two-fast-auth-example redis
@echo "Waiting for services to start up..."
@sleep 5
@docker compose run --rm two-fast-auth-example uv run python examples/testing/stress_test.py --url http://two-fast-auth-example:8000 --duration 120 --concurrency 50 --ramp-up 10 --delay 0.02 --test-type standard -v
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# High-load stress test
.PHONY: high-load-stress-test
high-load-stress-test:
@COMPOSE_BAKE=true docker compose up --build -d two-fast-auth-example redis
@echo "Waiting for services to start up..."
@sleep 5
@docker compose run --rm two-fast-auth-example uv run python examples/testing/stress_test.py --url http://two-fast-auth-example:8000 --duration 180 --concurrency 100 --ramp-up 15 --delay 0.01 --test-type high_load -v
@docker compose down --rmi all --remove-orphans -v
@docker system prune -f
# Serve docs
.PHONY: serve-docs
serve-docs:
@uv run mkdocs serve
@find . | grep -E "(__pycache__|\\.pyc|\\.pyo|\\.pytest_cache|\\.ruff_cache|\\.mypy_cache)" | xargs rm -rf
# Lint documentation
.PHONY: lint-docs
lint-docs:
@uv run pymarkdownlnt scan -r -e ./.venv -e ./.git -e ./.github -e ./data -e ./two_fast_auth -e ./tests -e ./.claude -e ./CLAUDE.md -e ./ZZZ .
@find . | grep -E "(__pycache__|\\.pyc|\\.pyo|\\.pytest_cache|\\.ruff_cache|\\.mypy_cache)" | xargs rm -rf
# Fix documentation
.PHONY: fix-docs
fix-docs:
@uv run pymarkdownlnt fix -r -e ./.venv -e ./.git -e ./.github -e ./data -e ./two_fast_auth -e ./tests -e ./.claude -e ./CLAUDE.md -e ./ZZZ .
@find . | grep -E "(__pycache__|\\.pyc|\\.pyo|\\.pytest_cache|\\.ruff_cache|\\.mypy_cache)" | xargs rm -rf
# Prune
.PHONY: prune
prune:
@docker system prune -f
# Clean Cache Files
.PHONY: clean
clean:
@find . | grep -E "(__pycache__|\\.pyc|\\.pyo|\\.pytest_cache|\\.ruff_cache|\\.mypy_cache)" | xargs rm -rf
# Help
.PHONY: help
help:
@echo "Available commands:"
@echo " make install - Install dependencies"
@echo " make install-dev - Install dev dependencies"
@echo " make lock - Update dependencies"
@echo " make start-example - Start example application with docker compose"
@echo " make run-example - Build and run example container directly"
@echo " make stop - Stop all containers and clean up resources"
@echo " make restart - Restart example application"
@echo " make lint - Run linting checks"
@echo " make fix - Auto-fix linting issues"
@echo " make vulture - Find dead code with Vulture"
@echo " make bandit - Run Bandit security scan"
@echo " make safety - Check dependencies with Safety"
@echo " make pip-audit - Audit dependencies with pip-audit"
@echo " make radon - Analyze code complexity with Radon"
@echo " make xenon - Check complexity thresholds with Xenon"
@echo " make deptry - Analyze dependencies with Deptry"
@echo " make semgrep - Run Semgrep static analysis"
@echo " make security - Run all security checks"
@echo " make quality - Run all code quality checks"
@echo " make analysis - Run all analysis tools"
@echo " make check-all - Run all checks (lint, security, quality, analysis)"
@echo " make test - Run tests with Python $(DEFAULT_PYTHON)"
@echo " make test-all - Run tests with all Python versions ($(PYTHON_VERSIONS))"
@echo " make test-<version> - Run tests with specific Python version (e.g., make test-3.10)"
@echo " make local-test - Run tests locally"
@echo " make stress-test - Run stress test"
@echo " make high-load-stress-test - Run high-load stress test"
@echo " make serve-docs - Serve documentation"
@echo " make lint-docs - Run markdownlint on documentation"
@echo " make fix-docs - Auto-fix markdownlint issues"
@echo " make prune - Prune docker resources"
@echo " make clean - Clean cache files"
@echo " make help - Show this help message"
@echo " make show-python-versions - Show supported Python versions"
# Python versions list
.PHONY: show-python-versions
show-python-versions:
@echo "Supported Python versions: $(PYTHON_VERSIONS)"
@echo "Default Python version: $(DEFAULT_PYTHON)"