Skip to content

Commit

Permalink
revert java connectors pipeline changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed May 10, 2023
1 parent bbab004 commit 6199f35
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ async def run_all_tests(context: ConnectorContext) -> List[StepResult]:
"""
context.secrets_dir = await secrets.get_connector_secret_dir(context)

step_results = await run_steps([BuildConnectorImage(context, LOCAL_BUILD_PLATFORM)])

step_results = await run_steps([BuildConnectorImage(context, LOCAL_BUILD_PLATFORM), UnitTests(context)])
if any([result.status is StepStatus.FAILURE for result in step_results]):
return step_results
if context.connector.supports_normalization:
normalization_image = f"{context.connector.normalization_repository}:dev"
context.logger.info(f"This connector supports normalization: will build {normalization_image}.")
Expand Down

0 comments on commit 6199f35

Please sign in to comment.