Skip to content

Commit 4bcf654

Browse files
authored
Temporarily remove regression test step (#37622)
1 parent a8ec6d0 commit 4bcf654

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

airbyte-ci/connectors/pipelines/README.md

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

650650
| Version | PR | Description |
651-
| ------- | ---------------------------------------------------------- |----------------------------------------------------------------------------------------------------------------------------|
651+
|---------| ---------------------------------------------------------- |----------------------------------------------------------------------------------------------------------------------------|
652+
| 4.10.1 | [#37622](https://github.com/airbytehq/airbyte/pull/37622) | Temporarily disable regression tests in CI |
652653
| 4.10.0 | [#37616](https://github.com/airbytehq/airbyte/pull/37616) | Improve modified files comparison when the target branch is from a fork. |
653654
| 4.9.0 | [#37440](https://github.com/airbytehq/airbyte/pull/37440) | Run regression tests with `airbyte-ci connectors test` |
654655
| 4.8.0 | [#37404](https://github.com/airbytehq/airbyte/pull/37404) | Accept a `git-repo-url` option on the `airbyte-ci` root command to checkout forked repo. |

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

+1-9
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from pipelines.airbyte_ci.connectors.build_image.steps.python_connectors import BuildConnectorImages
1616
from pipelines.airbyte_ci.connectors.consts import CONNECTOR_TEST_STEP_ID
1717
from pipelines.airbyte_ci.connectors.context import ConnectorContext
18-
from pipelines.airbyte_ci.connectors.test.steps.common import AcceptanceTests, RegressionTests
18+
from pipelines.airbyte_ci.connectors.test.steps.common import AcceptanceTests
1919
from pipelines.consts import LOCAL_BUILD_PLATFORM
2020
from pipelines.dagger.actions import secrets
2121
from pipelines.dagger.actions.python.poetry import with_poetry
@@ -280,12 +280,4 @@ def get_test_steps(context: ConnectorContext) -> STEP_TREE:
280280
depends_on=[CONNECTOR_TEST_STEP_ID.BUILD],
281281
),
282282
],
283-
[
284-
StepToRun(
285-
id=CONNECTOR_TEST_STEP_ID.CONNECTOR_REGRESSION_TESTS,
286-
step=RegressionTests(context),
287-
args=lambda results: {"connector_under_test_container": results[CONNECTOR_TEST_STEP_ID.BUILD].output[LOCAL_BUILD_PLATFORM]},
288-
depends_on=[CONNECTOR_TEST_STEP_ID.BUILD],
289-
),
290-
],
291283
]

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.10.0"
7+
version = "4.10.1"
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)