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 2f11bfa commit d3ae744Copy full SHA for d3ae744
airbyte_cdk/test/standard_tests/connector_base.py
@@ -154,10 +154,12 @@ def get_scenarios(
154
f"Acceptance tests config not found in {cls.acceptance_test_config_path}."
155
f" Found only: {str(all_tests_config)}."
156
)
157
- if category not in all_tests_config["acceptance_tests"]:
+
158
+ if (
159
+ category not in all_tests_config["acceptance_tests"]
160
+ or "tests" not in all_tests_config["acceptance_tests"][category]
161
+ ):
162
return []
- if "tests" not in all_tests_config["acceptance_tests"][category]:
- raise ValueError(f"No tests found for category {category}")
163
164
tests_scenarios = [
165
ConnectorTestScenario.model_validate(test)
0 commit comments