Skip to content

Commit a622889

Browse files
authored
airbyte-ci: fix typo preventing secret mounting on python connectors for integration tests (#38645)
1 parent 4d3668d commit a622889

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

airbyte-ci/connectors/pipelines/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,8 @@ E.G.: running Poe tasks on the modified internal packages of the current branch:
748748

749749
| Version | PR | Description |
750750
| ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
751-
| 4.15.2 | [#38628](https://github.com/airbytehq/airbyte/pull/38628) | Introduce ConnectorTestContext to avoid trying fetching connector secret in the PublishContext. |
751+
| 4.15.3 | [#38645](https://github.com/airbytehq/airbyte/pull/38645) | Fix typo preventing correct secret mounting on Python connectors integration tests. |
752+
| 4.15.2 | [#38628](https://github.com/airbytehq/airbyte/pull/38628) | Introduce ConnectorTestContext to avoid trying fetching connector secret in the PublishContext. |
752753
| 4.15.1 | [#38615](https://github.com/airbytehq/airbyte/pull/38615) | Do not eagerly fetch connector secrets. |
753754
| 4.15.0 | [#38322](https://github.com/airbytehq/airbyte/pull/38322) | Introduce a SecretStore abstraction to fetch connector secrets from metadata files. |
754755
| 4.14.1 | [#38582](https://github.com/airbytehq/airbyte/pull/38582) | Fixed bugs in `up_to_date` flags, `pull_request` version change logic. |

airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/context.py

-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ def get_secrets_from_connector_test_suites_option(
9999
for secret_info in enabled_test_suite["testSecrets"]:
100100
if secret := ConnectorTestContext._process_secret(secret_info, secret_stores, raise_on_missing_secret_store, logger):
101101
secrets.append(secret)
102-
103102
return secrets
104103

105104
def get_connector_secrets_for_test_suite(

airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/python_connectors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def get_test_steps(context: ConnectorTestContext) -> STEP_TREE:
266266
[
267267
StepToRun(
268268
id=CONNECTOR_TEST_STEP_ID.INTEGRATION,
269-
step=IntegrationTests(context, secrets=context.get_secrets_for_step_id(CONNECTOR_TEST_STEP_ID.UNIT)),
269+
step=IntegrationTests(context, secrets=context.get_secrets_for_step_id(CONNECTOR_TEST_STEP_ID.INTEGRATION)),
270270
args=lambda results: {"connector_under_test": results[CONNECTOR_TEST_STEP_ID.BUILD].output[LOCAL_BUILD_PLATFORM]},
271271
depends_on=[CONNECTOR_TEST_STEP_ID.BUILD],
272272
),

airbyte-ci/connectors/pipelines/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pipelines"
7-
version = "4.15.2"
7+
version = "4.15.3"
88
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
99
authors = ["Airbyte <[email protected]>"]
1010

0 commit comments

Comments
 (0)