Skip to content

Commit f1fb433

Browse files
authored
Reduce dimension in testing to simplify output (#384)
## Problem Some tests were being run with large dimensions. This leads to log output that is slow to load and difficult to read when things go wrong in CI. ## Solution Reduce the test dimension. ## Type of Change - [x] Infrastructure change (CI configs, etc)
1 parent 2a5bdac commit f1fb433

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/testing-integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
PINECONE_API_KEY: '${{ secrets.PINECONE_API_KEY }}'
9898
PINECONE_ENVIRONMENT: '${{ matrix.testConfig.pod.environment }}'
9999
GITHUB_BUILD_NUMBER: '${{ github.run_number }}-s-${{ matrix.testConfig.python-version}}'
100-
DIMENSION: 2500
100+
DIMENSION: 10
101101
METRIC: 'cosine'
102102
- name: 'Run integration tests (REST, staging)'
103103
if: matrix.pineconeEnv == 'staging'
@@ -108,7 +108,7 @@ jobs:
108108
PINECONE_API_KEY: '${{ secrets.PINECONE_API_KEY_STAGING }}'
109109
PINECONE_ENVIRONMENT: '${{ matrix.testConfig.pod.environment }}'
110110
GITHUB_BUILD_NUMBER: '${{ github.run_number }}-p-${{ matrix.testConfig.python-version}}'
111-
DIMENSION: 1536
111+
DIMENSION: 10
112112
METRIC: 'cosine'
113113

114114
control-rest-serverless:

0 commit comments

Comments
 (0)