From 91fe799e3493e6cf989b39b50cba029982cdbe5d Mon Sep 17 00:00:00 2001 From: hiyouga Date: Thu, 1 Jan 2026 23:05:40 +0800 Subject: [PATCH] fix copilot instructions --- .github/copilot-instructions.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 268915f..c05dfaa 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -64,7 +64,7 @@ curl -LsSf https://astral.sh/uv/install.sh | sh - **Check code style**: Run `make style` to check code formatting and linting - **Auto-format code**: Run `make format` to automatically format code and fix linting issues - **Build package**: Run `make build` to build the package -- **Run tests**: Run `make test` to run all tests +- **Run tests**: Run `make test` to run unit tests - **Help**: Run `make help` to see available make commands All make commands use `uv` internally to run tools in an isolated environment. @@ -75,4 +75,11 @@ The project is configured in `pyproject.toml` with: - Line length: 119 characters - Target Python version: 3.11 - Google Python style standards -- Import sorting with isort \ No newline at end of file +- Import sorting with isort + +### Testing + +- Run linting: `make style` +- Format code: `make format` +- Run Python scripts: `uv run python