File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -162,15 +162,24 @@ jobs:
162162 -f description="Running connector tests..." \
163163 -f context="${{ matrix.connector }} Test Report"
164164
165- - name : Test Connector
165+ - name : Fetch Connector Secrets
166166 if : steps.no_changes.outputs.status != 'cancelled'
167167 timeout-minutes : 90
168- working-directory : airbyte/airbyte-integrations/connectors/${{ matrix.connector }}
168+ working-directory : airbyte-python-cdk
169+ env :
170+ GCP_GSM_CREDENTIALS : ${{ secrets.GCP_GSM_CREDENTIALS }}
171+ POETRY_DYNAMIC_VERSIONING_BYPASS : " 0.0.0"
172+ run : |
173+ poetry run airbyte-cdk secrets fetch ${{ matrix.connector }}
174+
175+ - name : Test Connector
176+ if : steps.no_changes.outputs.status != 'cancelled'
177+ working-directory : airbyte-python-cdk
169178 env :
170179 GCP_GSM_CREDENTIALS : ${{ secrets.GCP_GSM_CREDENTIALS }}
171180 POETRY_DYNAMIC_VERSIONING_BYPASS : " 0.0.0"
172181 run : |
173- poetry run airbyte-cdk connector test ${{matrix.connector}}
182+ poetry run airbyte-cdk connector test ${{ matrix.connector }}
174183
175184 # Update the test report status with results
176185 - name : Update Test Report Status
You can’t perform that action at this time.
0 commit comments