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 e48df37 commit c663ee0Copy full SHA for c663ee0
airbyte_cdk/test/standard_tests/connector_base.py
@@ -163,11 +163,13 @@ def get_scenarios(
163
):
164
continue
165
166
- test_scenarios.extend([
167
- ConnectorTestScenario.model_validate(test)
168
- for test in all_tests_config["acceptance_tests"][category]["tests"]
169
- if "config_path" in test and "iam_role" not in test["config_path"]
170
- ])
+ test_scenarios.extend(
+ [
+ ConnectorTestScenario.model_validate(test)
+ for test in all_tests_config["acceptance_tests"][category]["tests"]
+ if "config_path" in test and "iam_role" not in test["config_path"]
171
+ ]
172
+ )
173
174
connector_root = cls.get_connector_root_dir().absolute()
175
for test in test_scenarios:
0 commit comments