Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

connectors-ci: fix java connectors testing #25268

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ class GradleTask(Step, ABC):

DESTINATION_BUILD_INCLUDE = [
"airbyte-integrations/bases/bases-destination-jdbc",
# destination-bigquery uses utils from destination gcs
"airbyte-integrations/connectors/destination-gcs",
"airbyte-integrations/connectors/destination-azure-blob-storage",
]

# These are the lines we remove from the connector gradle file to ignore specific tasks / plugins.
Expand Down Expand Up @@ -273,7 +273,7 @@ async def _run(self, connector_tar_file: File, normalization_tar_file: Optional[
tg.start_soon(self._load_connector_image, connector_tar_file)
return await super()._run()
except QueryError as e:
return StepResult(self, StepStatus.FAILURE, stderr=str(e)), None
return StepResult(self, StepStatus.FAILURE, stderr=str(e))


async def run_all_tests(context: ConnectorTestContext) -> List[StepResult]:
Expand Down