From 69a3bd7acb6969093d360c6b9ac2141ae1fa0397 Mon Sep 17 00:00:00 2001 From: Terry Kong Date: Mon, 14 Apr 2025 22:20:15 -0700 Subject: [PATCH] docs: run tests with --group test to avoid missing test deps Signed-off-by: Terry Kong --- docs/testing.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/testing.md b/docs/testing.md index 570c9c8696..474b6fa0b1 100644 --- a/docs/testing.md +++ b/docs/testing.md @@ -7,11 +7,8 @@ Unit tests require 2 GPUs to test the full suite. ::: ```sh -# Install the project and the test dependencies -uv pip install -e '.[test]' - # Run the unit tests using local GPUs -uv run bash tests/run_unit.sh +uv run --group test bash tests/run_unit.sh ``` :::{note}