From 5878579d84f1fc27cae0e497439ba4c078fccc56 Mon Sep 17 00:00:00 2001 From: alafanechere Date: Wed, 22 Jan 2025 19:12:35 +0100 Subject: [PATCH] airbyte-ci: wire the `--enable-report-auto-open` option to connector tests --- airbyte-ci/connectors/pipelines/README.md | 1 + .../pipelines/pipelines/airbyte_ci/connectors/test/commands.py | 1 + airbyte-ci/connectors/pipelines/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/airbyte-ci/connectors/pipelines/README.md b/airbyte-ci/connectors/pipelines/README.md index 8393eba060678..cc20250e94430 100644 --- a/airbyte-ci/connectors/pipelines/README.md +++ b/airbyte-ci/connectors/pipelines/README.md @@ -854,6 +854,7 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only | Version | PR | Description | | ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| 4.49.1 | [#TBD](https://github.com/airbytehq/airbyte/pull/TBD) | Wire the `--enable-report-auto-open` correctly for connector tests| | 4.49.0 | [#52033](https://github.com/airbytehq/airbyte/pull/52033) | Run gradle as a subprocess and not via Dagger | | 4.48.9 | [#51609](https://github.com/airbytehq/airbyte/pull/51609) | Fix ownership of shared cache volume for non root connectors | | 4.48.8 | [#51582](https://github.com/airbytehq/airbyte/pull/51582) | Fix typo in `migrate-to-inline-schemas` command | diff --git a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/commands.py b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/commands.py index 7a4b1179edd96..83e26f5888da8 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/commands.py +++ b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/commands.py @@ -166,6 +166,7 @@ async def test( run_step_options=run_step_options, targeted_platforms=[LOCAL_BUILD_PLATFORM], secret_stores=ctx.obj["secret_stores"], + enable_report_auto_open=ctx.obj.get("enable_report_auto_open", True), ) for connector in ctx.obj["selected_connectors_with_modified_files"] ] diff --git a/airbyte-ci/connectors/pipelines/pyproject.toml b/airbyte-ci/connectors/pipelines/pyproject.toml index 9f3caf4a4f0e3..c172d3258f6e9 100644 --- a/airbyte-ci/connectors/pipelines/pyproject.toml +++ b/airbyte-ci/connectors/pipelines/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pipelines" -version = "4.49.0" +version = "4.49.1" description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines" authors = ["Airbyte "]