Skip to content

Commit

Permalink
airbyte-ci: fix IncrementalAcceptanceTests behavior: skip them when A…
Browse files Browse the repository at this point in the history
…cceptanceTests succeed (#39483)
  • Loading branch information
alafanechere committed Jun 14, 2024
1 parent 52ad768 commit e2d3231
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions airbyte-ci/connectors/pipelines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,7 @@ E.G.: running Poe tasks on the modified internal packages of the current branch:

| Version | PR | Description |
| ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| 4.18.2 | [#39483](https://github.com/airbytehq/airbyte/pull/39483) | Skip IncrementalAcceptanceTests when AcceptanceTests succeed. |
| 4.18.1 | [#39457](https://github.com/airbytehq/airbyte/pull/39457) | Make slugify consistent with live-test |
| 4.18.0 | [#39366](https://github.com/airbytehq/airbyte/pull/39366) | Implement IncrementalAcceptance tests to only fail CI on community connectors when there's an Acceptance tests regression. |
| 4.17.0 | [#39321](https://github.com/airbytehq/airbyte/pull/39321) | Bust the java connector build cache flow to get fresh yum packages on a daily basis. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ async def get_step_result(self, container: Container) -> StepResult:
stdout=stdout,
output={"report_log": report_log_artifact},
artifacts=[report_log_artifact],
consider_in_overall_status=is_hard_failure,
consider_in_overall_status=status is StepStatus.SUCCESS or is_hard_failure,
)


Expand Down
2 changes: 1 addition & 1 deletion airbyte-ci/connectors/pipelines/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pipelines"
version = "4.18.1"
version = "4.18.2"
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
authors = ["Airbyte <contact@airbyte.io>"]

Expand Down

0 comments on commit e2d3231

Please sign in to comment.