Skip to content

Commit c0f2851

Browse files
committed
remove unused imports
1 parent 6a7b703 commit c0f2851

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

airbyte_cdk/test/standard_tests/connector_base.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,12 @@
1010

1111
from boltons.typeutils import classproperty
1212

13-
from airbyte_cdk.models import (
14-
AirbyteMessage,
15-
Type,
16-
)
1713
from airbyte_cdk.test import entrypoint_wrapper
1814
from airbyte_cdk.test.models import (
1915
ConnectorTestScenario,
2016
)
2117
from airbyte_cdk.test.standard_tests._job_runner import IConnector, run_test_job
2218
from 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

2820
if TYPE_CHECKING:
2921
from collections.abc import Callable

airbyte_cdk/test/standard_tests/docker_base.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import warnings
1111
from dataclasses import asdict
1212
from pathlib import Path
13-
from subprocess import CompletedProcess, SubprocessError
1413
from typing import Literal, cast
1514

1615
import orjson
@@ -35,7 +34,6 @@
3534
from 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(

0 commit comments

Comments
 (0)