From 38cf8237d4c3991164334d0ebc8494e1a1a4dabf Mon Sep 17 00:00:00 2001 From: Michael Goin Date: Mon, 13 Oct 2025 19:06:33 -0600 Subject: [PATCH] Fix pytest verbosity for prime-rl ci Signed-off-by: Michael Goin --- .buildkite/scripts/run-prime-rl-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/scripts/run-prime-rl-test.sh b/.buildkite/scripts/run-prime-rl-test.sh index 5b25c358fc4a..707a8180aaa1 100755 --- a/.buildkite/scripts/run-prime-rl-test.sh +++ b/.buildkite/scripts/run-prime-rl-test.sh @@ -54,6 +54,6 @@ echo "Prime-RL integration test environment setup complete!" echo "Running Prime-RL integration tests..." export WANDB_MODE=offline # this makes this test not require a WANDB_API_KEY -uv run pytest -vs tests/integration/test_rl.py -m gpu +uv run pytest -v -s tests/integration/test_rl.py -m gpu echo "Prime-RL integration tests completed!"