Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
36 lines (27 loc) · 875 Bytes

File metadata and controls

36 lines (27 loc) · 875 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
.DEFAULT_GOAL := prepare
.PHONY: help
help: ## Show available make targets.
@echo "Available make targets:"
@awk 'BEGIN { FS = ":.*## " } /^[A-Za-z0-9_.-]+:.*## / { printf " %-20s %s\n", $$1, $$2 }' $(MAKEFILE_LIST)
.PHONY: prepare
prepare: download-deps ## Sync dependencies using locked versions.
uv sync --frozen
.PHONY: format
format: ## Auto-format Python sources with ruff.
uv run ruff check --fix
uv run ruff format
.PHONY: check
check: ## Run linting and type checks.
uv run ruff check
uv run ruff format --check
uv run pyright
.PHONY: test
test: ## Run the test suite with pytest.
uv run pytest tests -vv
.PHONY: build
build: ## Build the standalone executable with PyInstaller.
uv run pyinstaller kimi.spec
.PHONY: ai-test
ai-test: ## Run the test suite with Kimi CLI.
uv run tests_ai/scripts/run.py tests_ai
include src/kimi_cli/deps/Makefile
Morty Proxy This is a proxified and sanitized view of the page, visit original site.