Skip to content

Commit f2a5dbd

Browse files
committed
Adjust retries
1 parent 072c914 commit f2a5dbd

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/actions/test-data-asyncio/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ runs:
3838
- name: Run data plane tests
3939
id: data-plane-asyncio-tests
4040
shell: bash
41-
run: poetry run pytest tests/integration/data_asyncio --retries 3 --retry-delay 20 -s -vv --log-cli-level=DEBUG
41+
run: poetry run pytest tests/integration/data_asyncio --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG
4242
env:
4343
PINECONE_API_KEY: ${{ inputs.PINECONE_API_KEY }}
4444
USE_GRPC: ${{ inputs.use_grpc }}

.github/actions/test-data-plane/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ runs:
5252
- name: Run data plane tests
5353
id: data-plane-tests
5454
shell: bash
55-
run: poetry run pytest tests/integration/data --retries 3 --retry-delay 20 -s -vv --log-cli-level=DEBUG
55+
run: poetry run pytest tests/integration/data --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG
5656
env:
5757
PINECONE_API_KEY: ${{ inputs.PINECONE_API_KEY }}
5858
USE_GRPC: ${{ inputs.use_grpc }}

.github/workflows/testing-integration-asyncio.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Run data plane tests
2727
id: data-plane-asyncio-tests
2828
shell: bash
29-
run: poetry run pytest tests/integration/data_asyncio --retries 3 --retry-delay 20 -s -vv --log-cli-level=DEBUG
29+
run: poetry run pytest tests/integration/data_asyncio --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG
3030
env:
3131
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}
3232

@@ -51,6 +51,6 @@ jobs:
5151
include_asyncio: true
5252
include_dev: true
5353
- name: 'db_control asyncio'
54-
run: poetry run pytest tests/integration/control_asyncio --retries 3 --retry-delay 20 -s -vv --log-cli-level=DEBUG
54+
run: poetry run pytest tests/integration/control_asyncio --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG
5555
env:
5656
PINECONE_API_KEY: '${{ secrets.PINECONE_API_KEY }}'

.github/workflows/testing-integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
include_asyncio: true
2323
- name: 'Run integration tests'
24-
run: poetry run pytest tests/integration/inference --retries 3 --retry-delay 20 -s -vv --log-cli-level=DEBUG
24+
run: poetry run pytest tests/integration/inference --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG
2525
env:
2626
PINECONE_DEBUG_CURL: 'true'
2727
PINECONE_API_KEY: '${{ secrets.PINECONE_API_KEY }}'
@@ -113,7 +113,7 @@ jobs:
113113
- name: Setup Poetry
114114
uses: ./.github/actions/setup-poetry
115115
- name: 'Run integration tests (REST)'
116-
run: poetry run pytest tests/integration/control/serverless --retries 3 --retry-delay 20 -s -vv --log-cli-level=DEBUG
116+
run: poetry run pytest tests/integration/control/serverless --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG
117117
env:
118118
PINECONE_DEBUG_CURL: 'true'
119119
PINECONE_API_KEY: '${{ secrets.PINECONE_API_KEY }}'

.github/workflows/testing-unit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
include_asyncio: true
5959

6060
- name: Run unit tests (REST)
61-
run: poetry run pytest --cov=pinecone --timeout=120 tests/unit --retries 3 --retry-delay 20 -s -vv --log-cli-level=DEBUG
61+
run: poetry run pytest --cov=pinecone --timeout=120 tests/unit --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG
6262
- name: Run unit tests (GRPC)
6363
if: ${{ matrix.use_grpc == true }}
64-
run: poetry run pytest --cov=pinecone/grpc --timeout=120 tests/unit_grpc --retries 3 --retry-delay 20 -s -vv --log-cli-level=DEBUG
64+
run: poetry run pytest --cov=pinecone/grpc --timeout=120 tests/unit_grpc --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG

0 commit comments

Comments
 (0)