Skip to content

Commit

Permalink
chore(airbyte-ci): replace airbyte_lib refs with python_cli (#48826)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers authored Dec 6, 2024
1 parent 9e52de6 commit c9c29a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airbyte-ci/connectors/pipelines/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def get_test_steps(context: ConnectorContext) -> STEP_TREE:
depends_on=[CONNECTOR_TEST_STEP_ID.BUILD],
),
StepToRun(
id=CONNECTOR_TEST_STEP_ID.AIRBYTE_LIB_VALIDATION,
id=CONNECTOR_TEST_STEP_ID.PYTHON_CLI_VALIDATION,
step=PyAirbyteValidation(context),
args=lambda results: {"connector_under_test": results[CONNECTOR_TEST_STEP_ID.BUILD].output[LOCAL_BUILD_PLATFORM]},
depends_on=[CONNECTOR_TEST_STEP_ID.BUILD],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class CONNECTOR_TEST_STEP_ID(str, Enum):
BUILD_TAR = "build_tar"
BUILD = "build"
INTEGRATION = "integration"
AIRBYTE_LIB_VALIDATION = "airbyte_lib_validation"
PYTHON_CLI_VALIDATION = "python_cli_validation"
QA_CHECKS = "qa_checks"
UNIT = "unit"
VERSION_INC_CHECK = "version_inc_check"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def get_test_steps(context: ConnectorTestContext) -> STEP_TREE:
depends_on=[CONNECTOR_TEST_STEP_ID.BUILD],
),
StepToRun(
id=CONNECTOR_TEST_STEP_ID.AIRBYTE_LIB_VALIDATION,
id=CONNECTOR_TEST_STEP_ID.PYTHON_CLI_VALIDATION,
step=PyAirbyteValidation(context),
args=lambda results: {"connector_under_test": results[CONNECTOR_TEST_STEP_ID.BUILD].output[LOCAL_BUILD_PLATFORM]},
depends_on=[CONNECTOR_TEST_STEP_ID.BUILD],
Expand Down

0 comments on commit c9c29a0

Please sign in to comment.