From e5caa0c1bca23e308f716c055014384ae1c9ba41 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Mar 2026 14:41:44 +0000 Subject: [PATCH 1/2] Initial plan From 4f8d9320a71061f7e85dc67ab8402730b7ca7bca Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Mar 2026 14:43:23 +0000 Subject: [PATCH 2/2] docs: fix Testing section ordering and remove duplicate uv sync command Co-authored-by: danielmeppiel <51440732+danielmeppiel@users.noreply.github.com> --- CONTRIBUTING.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c5fd3192..503c5c3a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -74,14 +74,9 @@ uv sync --extra dev ## Testing -We use pytest for testing. The project uses `uv` to manage virtual environments and dependencies — the recommended way to run tests is: +We use pytest for testing. After completing the setup above, run the test suite with: ```bash -uv run pytest -# install dev dependencies (creates .venv managed by uv) -uv sync --extra dev - -# run the test suite uv run pytest -q ```