airbyte-cdk 6.45.2__py3-none-any.whl → 6.45.2.post3.dev14463482961__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airbyte_cdk/connector_builder/connector_builder_handler.py +3 -1
- airbyte_cdk/connector_builder/test_reader/reader.py +3 -1
- {airbyte_cdk-6.45.2.dist-info → airbyte_cdk-6.45.2.post3.dev14463482961.dist-info}/METADATA +1 -1
- {airbyte_cdk-6.45.2.dist-info → airbyte_cdk-6.45.2.post3.dev14463482961.dist-info}/RECORD +8 -8
- {airbyte_cdk-6.45.2.dist-info → airbyte_cdk-6.45.2.post3.dev14463482961.dist-info}/LICENSE.txt +0 -0
- {airbyte_cdk-6.45.2.dist-info → airbyte_cdk-6.45.2.post3.dev14463482961.dist-info}/LICENSE_SHORT +0 -0
- {airbyte_cdk-6.45.2.dist-info → airbyte_cdk-6.45.2.post3.dev14463482961.dist-info}/WHEEL +0 -0
- {airbyte_cdk-6.45.2.dist-info → airbyte_cdk-6.45.2.post3.dev14463482961.dist-info}/entry_points.txt +0 -0
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
from dataclasses import asdict, dataclass, field
|
7
|
-
from typing import Any, Dict, List, Mapping
|
7
|
+
from typing import Any, ClassVar, Dict, List, Mapping
|
8
8
|
|
9
9
|
from airbyte_cdk.connector_builder.test_reader import TestReader
|
10
10
|
from airbyte_cdk.models import (
|
@@ -37,6 +37,8 @@ MAX_STREAMS_KEY = "max_streams"
|
|
37
37
|
|
38
38
|
@dataclass
|
39
39
|
class TestLimits:
|
40
|
+
__test__: ClassVar[bool] = False # Tell Pytest this is not a Pytest class, despite its name
|
41
|
+
|
40
42
|
max_records: int = field(default=DEFAULT_MAXIMUM_RECORDS)
|
41
43
|
max_pages_per_slice: int = field(default=DEFAULT_MAXIMUM_NUMBER_OF_PAGES_PER_SLICE)
|
42
44
|
max_slices: int = field(default=DEFAULT_MAXIMUM_NUMBER_OF_SLICES)
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
import logging
|
7
|
-
from typing import Any, Dict, Iterator, List, Mapping, Optional, Union
|
7
|
+
from typing import Any, ClassVar, Dict, Iterator, List, Mapping, Optional, Union
|
8
8
|
|
9
9
|
from airbyte_cdk.connector_builder.models import (
|
10
10
|
AuxiliaryRequest,
|
@@ -66,6 +66,8 @@ class TestReader:
|
|
66
66
|
|
67
67
|
"""
|
68
68
|
|
69
|
+
__test__: ClassVar[bool] = False # Tell Pytest this is not a Pytest class, despite its name
|
70
|
+
|
69
71
|
logger = logging.getLogger("airbyte.connector-builder")
|
70
72
|
|
71
73
|
def __init__(
|
@@ -7,13 +7,13 @@ airbyte_cdk/config_observation.py,sha256=7SSPxtN0nXPkm4euGNcTTr1iLbwUL01jy-24V1H
|
|
7
7
|
airbyte_cdk/connector.py,sha256=bO23kdGRkl8XKFytOgrrWFc_VagteTHVEF6IsbizVkM,4224
|
8
8
|
airbyte_cdk/connector_builder/README.md,sha256=Hw3wvVewuHG9-QgsAq1jDiKuLlStDxKBz52ftyNRnBw,1665
|
9
9
|
airbyte_cdk/connector_builder/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
|
10
|
-
airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=
|
10
|
+
airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=5ML_9Qw3TdD0NgHYhEOFNMvkmYCFLILbAX7kZFZx3gQ,5877
|
11
11
|
airbyte_cdk/connector_builder/main.py,sha256=j1pP5N8RsnvQZ4iYxhLdLEHsJ5Ui7IVFBUi6wYMGBkM,3839
|
12
12
|
airbyte_cdk/connector_builder/models.py,sha256=9pIZ98LW_d6fRS39VdnUOf3cxGt4TkC5MJ0_OrzcCRk,1578
|
13
13
|
airbyte_cdk/connector_builder/test_reader/__init__.py,sha256=iTwBMoI9vaJotEgpqZbFjlxRcbxXYypSVJ9YxeHk7wc,120
|
14
14
|
airbyte_cdk/connector_builder/test_reader/helpers.py,sha256=Iczn-_iczS2CaIAunWwyFcX0uLTra8Wh9JVfzm1Gfxo,26765
|
15
15
|
airbyte_cdk/connector_builder/test_reader/message_grouper.py,sha256=84BAEPIBHMq3WCfO14WNvh_q7OsjGgDt0q1FTu8eW-w,6918
|
16
|
-
airbyte_cdk/connector_builder/test_reader/reader.py,sha256=
|
16
|
+
airbyte_cdk/connector_builder/test_reader/reader.py,sha256=wJtuYTZuc24-JlGF4UBFTJ2PChLjcQrvldqAWJM9Y9Y,20775
|
17
17
|
airbyte_cdk/connector_builder/test_reader/types.py,sha256=hPZG3jO03kBaPyW94NI3JHRS1jxXGSNBcN1HFzOxo5Y,2528
|
18
18
|
airbyte_cdk/destinations/__init__.py,sha256=FyDp28PT_YceJD5HDFhA-mrGfX9AONIyMQ4d68CHNxQ,213
|
19
19
|
airbyte_cdk/destinations/destination.py,sha256=CIq-yb8C_0QvcKCtmStaHfiqn53GEfRAIGGCkJhKP1Q,5880
|
@@ -366,9 +366,9 @@ airbyte_cdk/utils/slice_hasher.py,sha256=EDxgROHDbfG-QKQb59m7h_7crN1tRiawdf5uU7G
|
|
366
366
|
airbyte_cdk/utils/spec_schema_transformations.py,sha256=-5HTuNsnDBAhj-oLeQXwpTGA0HdcjFOf2zTEMUTTg_Y,816
|
367
367
|
airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
|
368
368
|
airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
|
369
|
-
airbyte_cdk-6.45.2.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
|
370
|
-
airbyte_cdk-6.45.2.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
|
371
|
-
airbyte_cdk-6.45.2.dist-info/METADATA,sha256=
|
372
|
-
airbyte_cdk-6.45.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
373
|
-
airbyte_cdk-6.45.2.dist-info/entry_points.txt,sha256=fj-e3PAQvsxsQzyyq8UkG1k8spunWnD4BAH2AwlR6NM,95
|
374
|
-
airbyte_cdk-6.45.2.dist-info/RECORD,,
|
369
|
+
airbyte_cdk-6.45.2.post3.dev14463482961.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
|
370
|
+
airbyte_cdk-6.45.2.post3.dev14463482961.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
|
371
|
+
airbyte_cdk-6.45.2.post3.dev14463482961.dist-info/METADATA,sha256=1zWGqhfb96Ud4180ayG4dERFE_OGwnWsUQqs8eUO38k,6092
|
372
|
+
airbyte_cdk-6.45.2.post3.dev14463482961.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
373
|
+
airbyte_cdk-6.45.2.post3.dev14463482961.dist-info/entry_points.txt,sha256=fj-e3PAQvsxsQzyyq8UkG1k8spunWnD4BAH2AwlR6NM,95
|
374
|
+
airbyte_cdk-6.45.2.post3.dev14463482961.dist-info/RECORD,,
|
{airbyte_cdk-6.45.2.dist-info → airbyte_cdk-6.45.2.post3.dev14463482961.dist-info}/LICENSE.txt
RENAMED
File without changes
|
{airbyte_cdk-6.45.2.dist-info → airbyte_cdk-6.45.2.post3.dev14463482961.dist-info}/LICENSE_SHORT
RENAMED
File without changes
|
File without changes
|
{airbyte_cdk-6.45.2.dist-info → airbyte_cdk-6.45.2.post3.dev14463482961.dist-info}/entry_points.txt
RENAMED
File without changes
|