From 3f7dbe964ca40127ec037ddc2810b0c4cb462cca Mon Sep 17 00:00:00 2001 From: BryanFauble <17128019+BryanFauble@users.noreply.github.com> Date: Thu, 13 Aug 2026 16:44:28 -0700 Subject: [PATCH] Reduce parallel test execution from 8 to 4 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 67eeb0cd5..d5fafbbb0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -211,7 +211,7 @@ jobs: pytest -sv --reruns 3 --cov-append --cov=. --cov-report xml \ --html=integration-test-report.html --self-contained-html \ --junit-xml=test-results.xml \ - -n 8 --dist loadscope \ + -n 4 --dist loadscope \ $(cat failed_tests.txt | tr '\n' ' ') else echo "::notice::First attempt or no previous failures - running full integration test suite" @@ -220,7 +220,7 @@ jobs: pytest -sv --reruns 3 --cov-append --cov=. --cov-report xml \ --html=integration-test-report.html --self-contained-html \ --junit-xml=test-results.xml \ - tests/integration -n 8 $IGNORE_FLAGS --dist loadscope + tests/integration -n 4 $IGNORE_FLAGS --dist loadscope fi # Execute the CLI tests in a non-dist way because they were causing some test instability when being run concurrently