We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d3b146 commit 86fd9a6Copy full SHA for 86fd9a6
airbyte_cdk/test/models/scenario.py
@@ -26,7 +26,7 @@
26
27
class EmptyStreamConfig(BaseModel):
28
"""Configuration for streams that should be excluded from tests."""
29
-
+
30
name: str
31
bypass_reason: str
32
airbyte_cdk/test/standard_tests/docker_base.py
@@ -338,7 +338,9 @@ def test_docker_image_build_and_read(
338
339
if scenario.empty_streams:
340
streams_to_exclude = {empty_stream.name for empty_stream in scenario.empty_streams}
341
- streams_list = [stream for stream in streams_list if stream not in streams_to_exclude]
+ streams_list = [
342
+ stream for stream in streams_list if stream not in streams_to_exclude
343
+ ]
344
345
configured_catalog: ConfiguredAirbyteCatalog = ConfiguredAirbyteCatalog(
346
streams=[
0 commit comments