Skip to content

Commit

Permalink
CATS: remove default for SetupTeardownConfig (#40640)
Browse files Browse the repository at this point in the history
  • Loading branch information
clnoll authored and xiaohansong committed Jul 2, 2024
1 parent a4e908d commit 9e4addd
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ class BasicReadTestConfig(BaseConfig):
description="For file-based connectors, unsupported by source file types can be configured or a test can be skipped at all",
)
setup_teardown_config: Optional[SetupTeardownConfig] = Field(
default_factory=SetupTeardownConfig,
description="Information required to run a setup & teardown Docker container before each test.",
)

Expand All @@ -210,7 +209,6 @@ class FullRefreshConfig(BaseConfig):
description="For each stream, list of fields path ignoring in sequential reads test"
)
setup_teardown_config: Optional[SetupTeardownConfig] = Field(
default_factory=SetupTeardownConfig,
description="Information required to run a setup & teardown Docker container before each test.",
)

Expand Down Expand Up @@ -250,7 +248,6 @@ class IncrementalConfig(BaseConfig):
description="Determines whether to skip more granular testing for incremental syncs", default=False
)
setup_teardown_config: Optional[SetupTeardownConfig] = Field(
default_factory=SetupTeardownConfig,
description="Information required to run a setup & teardown Docker container before each test.",
)

Expand Down

0 comments on commit 9e4addd

Please sign in to comment.