Skip to content

Commit 7de9ab7

Browse files
committed
fix imports and such
1 parent 032d5e7 commit 7de9ab7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

airbyte_cdk/test/standard_tests/declarative_sources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from airbyte_cdk.sources.declarative.concurrent_declarative_source import (
1010
ConcurrentDeclarativeSource,
1111
)
12-
from airbyte_cdk.test.declarative.utils.job_runner import IConnector
12+
from airbyte_cdk.test.standard_tests._job_runner import IConnector
1313
from airbyte_cdk.test.standard_tests.models import ConnectorTestScenario
1414
from airbyte_cdk.test.standard_tests.source_base import SourceTestSuiteBase
1515
from airbyte_cdk.test.standard_tests.test_resources import MANIFEST_YAML

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ airbyte-protocol-models-dataclasses = "^0.14"
3434
backoff = "*"
3535
boltons = "^25.0.0"
3636
cachetools = "*"
37+
click = "^8.1.8"
3738
dpath = "^2.1.6"
3839
dunamai = "^1.22.0"
3940
genson = "1.3.0"
41+
google-cloud-secret-manager = "^2.17.0"
4042
isodate = "~0.6.1"
4143
Jinja2 = "~3.1.2"
4244
jsonref = "~0.2"
@@ -77,7 +79,6 @@ numpy = "<2"
7779
unstructured = { version = "0.10.27", extras = ["docx", "pptx"], optional = true }
7880
"unstructured.pytesseract" = { version = ">=0.3.12", optional = true }
7981
pyjwt = "^2.8.0"
80-
google-cloud-secret-manager = "^2.17.0"
8182
cryptography = ">=44.0.0,<45.0.0" # Constrained as transitive dependency due to a bug in newer versions
8283
pytz = "2024.2"
8384
orjson = "^3.10.7"
@@ -86,7 +87,6 @@ sqlalchemy = {version = "^2.0,!=2.0.36", optional = true }
8687
xmltodict = ">=0.13,<0.15"
8788
anyascii = "^0.3.2"
8889
whenever = "^0.6.16"
89-
click = "^8.1.8"
9090

9191
[tool.poetry.group.dev.dependencies]
9292
freezegun = "*"
@@ -117,8 +117,8 @@ sql = ["sqlalchemy"]
117117

118118
[tool.poetry.scripts]
119119

120-
source-declarative-manifest = "airbyte_cdk.cli.source_declarative_manifest:run"
121120
airbyte-cdk = "airbyte_cdk.cli.airbyte_cdk:cli"
121+
source-declarative-manifest = "airbyte_cdk.cli.source_declarative_manifest:run"
122122

123123
[tool.isort]
124124
skip = ["__init__.py"] # TODO: Remove after this is fixed: https://github.com/airbytehq/airbyte-python-cdk/issues/12

unit_tests/test/test_standard_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from airbyte_cdk.sources.declarative.declarative_source import DeclarativeSource
99
from airbyte_cdk.sources.source import Source
10-
from airbyte_cdk.test.declarative.utils.job_runner import IConnector
10+
from airbyte_cdk.test.standard_tests._job_runner import IConnector
1111

1212

1313
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)