From 5591f550a14351ea65d6c3b3eae4b9811813afd1 Mon Sep 17 00:00:00 2001 From: aya Date: Wed, 25 Dec 2024 20:08:01 +0200 Subject: [PATCH] Reduce shards again to 8 --- .github/workflows/test_common.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index 998574f6..b01b909d 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,5,6,7 ,8,9,10,11,12,13,14] + shard: [ 0,1,2,3,4,5,6,7] runs-on: ubuntu-latest timeout-minutes: 120 steps: @@ -57,11 +57,11 @@ jobs: - name: Run tests run: | if [ "${{ matrix.shard }}" == 7 ]; then - pytest --reruns 2 --dist=loadfile tests/store/test_cursor_many_msgs.py -n 1 --maxfail=1 --alluredir=allure-results-${{ matrix.shard }} + pytest --reruns 2 --dist=loadfile tests/store/test_cursor_many_msgs.py -n 1 --alluredir=allure-results-${{ matrix.shard }} elif [ "${{ matrix.shard }}" == 1 ]; then pytest --dist=loadfile tests/relay/test_rln.py -n 1 --alluredir=allure-results-${{ matrix.shard }} elif [ "${{ matrix.shard }}" != 1 ]; then - pytest --dist=loadfile --ignore=tests/relay/test_rln.py --ignore=tests/store/test_cursor_many_msgs.py --reruns 2 -n=4 --shard-id=${{ matrix.shard }} --num-shards=15 --alluredir=allure-results-${{ matrix.shard }} + pytest --dist=loadfile --ignore=tests/relay/test_rln.py --ignore=tests/store/test_cursor_many_msgs.py --reruns 2 -n=4 --shard-id=${{ matrix.shard }} --num-shards=8 --alluredir=allure-results-${{ matrix.shard }} fi