From 57d17588e7d90006c1bf071cb45b8fb0c0e266f5 Mon Sep 17 00:00:00 2001 From: aya Date: Tue, 24 Dec 2024 19:05:35 +0200 Subject: [PATCH] increase shards to 8 --- .github/workflows/test_common.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index 6fb58c1c..d06ac259 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -37,7 +37,7 @@ jobs: name: tests strategy: matrix: - shard: [ 0,1,2,3,4 ] + shard: [ 0,1,2,3,4,5,6,7 ] runs-on: ubuntu-latest timeout-minutes: 120 steps: @@ -56,7 +56,7 @@ jobs: - name: Run tests run: | - pytest --dist=loadgroup --reruns 2 --shard-id=${{ matrix.shard }} --num-shards=5 --alluredir=allure-results + pytest --dist=loadgroup --reruns 2 --shard-id=${{ matrix.shard }} --num-shards=8 --alluredir=allure-results - name: Get allure history if: always()