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 dbbeeb2 commit 763d247Copy full SHA for 763d247
airbyte_cdk/test/utils/manifest_only_fixtures.py
@@ -54,4 +54,7 @@ def components_module(connector_dir: Path) -> Optional[ModuleType]:
54
@pytest.fixture(scope="session")
55
def manifest_path(connector_dir: Path) -> Path:
56
"""Return the path to the connector's manifest file."""
57
- return connector_dir / "manifest.yaml"
+ path = connector_dir / "manifest.yaml"
58
+ if not path.exists():
59
+ raise FileNotFoundError(f"Manifest file not found at {path}")
60
+ return path
0 commit comments