File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed
airbyte_cdk/test/standard_tests Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change 1010
1111from boltons .typeutils import classproperty
1212
13- from airbyte_cdk .models import (
14- AirbyteMessage ,
15- Type ,
16- )
1713from airbyte_cdk .test import entrypoint_wrapper
1814from airbyte_cdk .test .models import (
1915 ConnectorTestScenario ,
2016)
2117from airbyte_cdk .test .standard_tests ._job_runner import IConnector , run_test_job
2218from airbyte_cdk .test .standard_tests .docker_base import DockerConnectorTestSuite
23- from airbyte_cdk .utils .connector_paths import (
24- ACCEPTANCE_TEST_CONFIG ,
25- find_connector_root ,
26- )
2719
2820if TYPE_CHECKING :
2921 from collections .abc import Callable
Original file line number Diff line number Diff line change 1010import warnings
1111from dataclasses import asdict
1212from pathlib import Path
13- from subprocess import CompletedProcess , SubprocessError
1413from typing import Literal , cast
1514
1615import orjson
3534from airbyte_cdk .utils .docker import (
3635 build_connector_image ,
3736 run_docker_airbyte_command ,
38- run_docker_command ,
3937)
4038
4139
@@ -85,7 +83,7 @@ def get_scenarios(
8583 """
8684 categories = ["connection" , "spec" ]
8785 try :
88- acceptance_test_config_path = cls .acceptance_test_config_path
86+ cls .acceptance_test_config_path
8987 except FileNotFoundError as e :
9088 # Destinations sometimes do not have an acceptance tests file.
9189 warnings .warn (
You can’t perform that action at this time.
0 commit comments