diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index ead49865..80ca0777 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -57,9 +57,9 @@ jobs: - name: Run tests run: | if [ "${{ matrix.shard }}" == 7 ]; then - pytest tests/store/test_cursor.py + pytest --reruns 2 tests/store/test_cursor.py elif [ "${{ matrix.shard }}" != 7 ]; then - pytest --dist=loadgroup --reruns 2 --shard-id=${{ matrix.shard }} --num-shards=11 --alluredir=allure-results + pytest --dist=loadgroup --ignore=tests/store/test_cursor.py --reruns 2 --shard-id=${{ matrix.shard }} --num-shards=11 --alluredir=allure-results fi