From e5969b2f18b1756ee789d55f17750e43cd729e39 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 6 Nov 2024 09:52:29 -0300 Subject: [PATCH] ci: Update Codspeed workflow to exclude api_key_required tests and enable parallel execution (#4412) fix: update codspeed workflow to exclude api_key_required tests and run in parallel --- .github/workflows/codspeed.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codspeed.yml b/.github/workflows/codspeed.yml index 15e032d5c..6c35ba31d 100644 --- a/.github/workflows/codspeed.yml +++ b/.github/workflows/codspeed.yml @@ -27,6 +27,8 @@ jobs: run: | uv run pytest src/backend/tests \ --ignore=src/backend/tests/integration \ - --codspeed + --codspeed \ + -m "not api_key_required" \ + -n auto - name: Minimize uv cache run: uv cache prune --ci