From f257591626f724c138f92bebffc9086949065056 Mon Sep 17 00:00:00 2001 From: aya Date: Thu, 12 Dec 2024 10:31:12 +0200 Subject: [PATCH] reduce shards to 2 --- .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 429fc0f0e..eaa5acde3 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -37,7 +37,7 @@ jobs: name: tests strategy: matrix: - shard: [ 1, 2, 3, 4, 5, 6 ] + shard: [ 1, 2 ] runs-on: ubuntu-latest timeout-minutes: 120 steps: @@ -56,7 +56,7 @@ jobs: - name: Run tests run: | - pytest --shard-id=${{ matrix.shard }} --num-shards=6 --alluredir=allure-results + pytest --shard-id=${{ matrix.shard }} --num-shards=2 --alluredir=allure-results - name: Get allure history if: always()