Skip to content

Commit ba21cf4

Browse files
committed
use more explicit install from poetry
1 parent 79cc462 commit ba21cf4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/connector-tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
working-directory: airbyte/airbyte-integrations/connectors/${{ matrix.connector }}
182182
run: |
183183
poe use-cdk-branch-active
184-
poe install
184+
poetry install --all-extras
185185
186186
- name: Run Unit Tests [Python Connectors]
187187
if: env.CONNECTOR_LANGUAGE == 'python'
@@ -198,23 +198,23 @@ jobs:
198198
run: |
199199
poetry run airbyte-cdk connector test
200200
201-
- name: Test Connector using Dev CDK [Python Connectors]
202-
if: env.CONNECTOR_LANGUAGE == 'python'
203-
working-directory: airbyte/airbyte-integrations/connectors/${{ matrix.connector }}
201+
- name: Run FAST Standard Tests [Manifest-Only Connectors]
202+
if: env.CONNECTOR_LANGUAGE == 'manifest-only'
203+
working-directory: airbyte-python-cdk
204204
env:
205205
GCP_GSM_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS }}
206206
POETRY_DYNAMIC_VERSIONING_BYPASS: "0.0.0"
207207
run: |
208-
poetry run airbyte-cdk connector test
208+
poetry run airbyte-cdk connector test ${{ matrix.connector }}
209209
210-
- name: Test Connector [Manifest-Only Connectors]
211-
if: env.CONNECTOR_LANGUAGE == 'manifest-only'
212-
working-directory: airbyte-python-cdk
210+
- name: Test Connector using Dev CDK [Python Connectors]
211+
if: env.CONNECTOR_LANGUAGE == 'python'
212+
working-directory: airbyte/airbyte-integrations/connectors/${{ matrix.connector }}
213213
env:
214214
GCP_GSM_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS }}
215215
POETRY_DYNAMIC_VERSIONING_BYPASS: "0.0.0"
216216
run: |
217-
poetry run airbyte-cdk connector test ${{ matrix.connector }}
217+
poetry run airbyte-cdk connector test
218218
219219
- name: Container Build and Test [All Connectors]
220220
if: steps.no_changes.outputs.status != 'cancelled'

0 commit comments

Comments
 (0)