diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 753fc8b..268915f 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -64,6 +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 - **Help**: Run `make help` to see available make commands All make commands use `uv` internally to run tools in an isolated environment. @@ -74,11 +75,4 @@ 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 - -### Testing - -When testing code changes, use `uvx` to run commands: -- `uvx ruff check .` - Run linting -- `uvx ruff format .` - Format code -- `uv run python