From b1288391c8be45d4746e3c73bc4da6544b11e322 Mon Sep 17 00:00:00 2001 From: aya Date: Sun, 15 Dec 2024 10:37:08 +0200 Subject: [PATCH] increase shards to 4 --- .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 5fbb72aa..83ae0ac5 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 ] + shard: [ 0,1,2,3 ] runs-on: ubuntu-latest timeout-minutes: 120 steps: @@ -56,7 +56,7 @@ jobs: - name: Run tests run: | - pytest --dist loadgroup --reruns 2 --shard-id=1 --num-shards=2 --alluredir=allure-results + pytest --dist loadgroup --reruns 2 --shard-id=${{ matrix.shard }} --num-shards=2 --alluredir=allure-results - name: Get allure history if: always()