File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
airbyte_cdk/cli/airbyte_cdk Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 4545
4646import rich_click as click
4747
48- from airbyte_cdk .test .standard_tests .util import create_connector_test_suite
49-
5048# from airbyte_cdk.test.standard_tests import pytest_hooks
5149from airbyte_cdk .utils .connector_paths import (
5250 find_connector_root_from_name ,
@@ -174,6 +172,9 @@ def run_connector_tests(
174172 "pytest is not installed. Please install pytest to run the connector tests."
175173 )
176174
175+ # Lazy import: this module requires pytest, which is only available via the [dev] extra.
176+ from airbyte_cdk .test .standard_tests .util import create_connector_test_suite
177+
177178 connector_test_suite = create_connector_test_suite (
178179 connector_name = connector_name if not connector_directory else None ,
179180 connector_directory = connector_directory ,
You can’t perform that action at this time.
0 commit comments