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