|
17 | 17 |
|
18 | 18 | .PHONY: ruff lint ruff-fix lint-fix format fmt check-format check-fmt \ |
19 | 19 | test coverage clean install install-app docker docker-run first-time-setup \ |
20 | | - test-verbose init-files setup-venv setup-mkinit install-mock-server \ |
| 20 | + test-verbose init-files setup-venv install-mock-server \ |
21 | 21 | integration-tests integration-tests-ci integration-tests-verbose integration-tests-ci-macos \ |
22 | 22 | test-integration test-integration-ci test-integration-verbose test-integration-ci-macos \ |
23 | | - test-stress stress-tests internal-help help |
| 23 | + generate-cli-docs test-stress stress-tests internal-help help |
24 | 24 |
|
25 | 25 |
|
26 | 26 | # Include user-defined environment variables |
@@ -160,9 +160,6 @@ setup-venv: #? create the virtual environment. |
160 | 160 | printf "$(bold)$(green)Virtual environment already exists$(reset)\n"; \ |
161 | 161 | fi |
162 | 162 |
|
163 | | -setup-mkinit: #? install the mkinit and ruff packages for pre-commit. |
164 | | - $(activate_venv) && uv pip install mkinit ruff |
165 | | - |
166 | 163 | first-time-setup: #? convenience command to setup the environment for the first time |
167 | 164 | $(MAKE) setup-venv --no-print-directory |
168 | 165 |
|
@@ -206,3 +203,6 @@ integration-tests-verbose test-integration-verbose: #? run integration tests wit |
206 | 203 | @printf "$(yellow)Note: Sequential mode shows real-time AIPerf output$(reset)\n" |
207 | 204 | $(activate_venv) && pytest tests/integration/ -m 'integration and not stress and not performance' -vv -s --tb=short --log-cli-level=INFO --capture=no $(args) |
208 | 205 | @printf "$(bold)$(green)AIPerf Mock Server integration tests passed!$(reset)\n" |
| 206 | + |
| 207 | +generate-cli-docs: #? generate the CLI documentation. |
| 208 | + $(activate_venv) && tools/generate_cli_docs.py |
0 commit comments