Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/testing-integration-asyncio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ jobs:
include_asyncio: true
include_dev: true
- name: 'db_control asyncio'
run: poetry run pytest tests/integration/control_asyncio --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG
run: poetry run pytest tests/integration/control_asyncio/*.py --retries 5 --retry-delay 35 -s -vv --log-cli-level=DEBUG
env:
PINECONE_API_KEY: '${{ secrets.PINECONE_API_KEY }}'
16 changes: 8 additions & 8 deletions .github/workflows/testing-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ jobs:
name: Reorg tests
runs-on: ubuntu-latest
env:
PINECONE_DEBUG_CURL: 'true'
PINECONE_DEBUG_CURL: 'false'
PINECONE_API_KEY: '${{ secrets.PINECONE_API_KEY }}'
PINECONE_ADDITIONAL_HEADERS: '{"sdk-test-suite": "pinecone-python-client"}'
strategy:
fail-fast: false
matrix:
python_version: [3.9, 3.12]
test_suite:
- tests/integration/control/index
- tests/integration/control/collections
- tests/integration/control/backup
- tests/integration/control/restore_job
- tests/integration/control_asyncio/index
- tests/integration/control_asyncio/backup
- tests/integration/control_asyncio/restore_job
- tests/integration/control/resources/index
- tests/integration/control/resources/collections
- tests/integration/control/resources/backup
- tests/integration/control/resources/restore_job
- tests/integration/control_asyncio/resources/index
- tests/integration/control_asyncio/resources/backup
- tests/integration/control_asyncio/resources/restore_job
steps:
- uses: actions/checkout@v4
- name: 'Set up Python ${{ matrix.python_version }}'
Expand Down
2 changes: 1 addition & 1 deletion pinecone/db_control/resources/sync/backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def list(
List backups for an index or for the project.

Args:
index_name (str): The name of the index to list backups for.
index_name (str): The name of the index to list backups for. If not provided, list all backups for the project.
limit (int): The maximum number of backups to return.
pagination_token (str): The pagination token to use for the next page of backups.
"""
Expand Down
168 changes: 0 additions & 168 deletions tests/integration/control/backup/conftest.py

This file was deleted.

136 changes: 0 additions & 136 deletions tests/integration/control/collections/conftest.py

This file was deleted.

Loading
Loading