File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
airbyte_cdk/connector_builder/test_reader
unit_tests/sources/declarative/parsers Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,9 @@ class TestReader:
6666
6767 """
6868
69- __test__ : ClassVar [bool ] = False # Prevent pytest from treating this as a test case, despite its name
69+ __test__ : ClassVar [bool ] = (
70+ False # Prevent pytest from treating this as a test case, despite its name
71+ )
7072
7173 logger = logging .getLogger ("airbyte.connector-builder" )
7274
Original file line number Diff line number Diff line change @@ -21,7 +21,9 @@ class TestingSomeComponent(DefaultErrorHandler):
2121 A basic test class with various field permutations used to test manifests with custom components
2222 """
2323
24- __test__ : ClassVar [bool ] = False # Prevent pytest from thinking that this is a test class, despite the name
24+ __test__ : ClassVar [bool ] = (
25+ False # Prevent pytest from thinking that this is a test class, despite the name
26+ )
2527
2628 subcomponent_field_with_hint : DpathExtractor = field (
2729 default_factory = lambda : DpathExtractor (field_path = [], config = {}, parameters = {})
@@ -39,7 +41,9 @@ class TestingCustomSubstreamPartitionRouter(SubstreamPartitionRouter):
3941 A test class based on a SubstreamPartitionRouter used for testing manifests that use custom components.
4042 """
4143
42- __test__ : ClassVar [bool ] = False # Prevent pytest from thinking that this is a test class, despite the name
44+ __test__ : ClassVar [bool ] = (
45+ False # Prevent pytest from thinking that this is a test class, despite the name
46+ )
4347
4448 custom_field : str
4549 custom_pagination_strategy : PaginationStrategy
You can’t perform that action at this time.
0 commit comments