Merge pull request #13 from abhishekbhakat/fix-parser-tests

Use default resources yaml
This commit is contained in:
2025-02-25 02:22:24 +00:00
committed by GitHub

View File

@@ -13,7 +13,7 @@ logger = logging.getLogger(__name__)
@pytest.fixture
def spec_file():
"""Get content of the v1.yaml spec file."""
with resources.files("tests.client").joinpath("v1.yaml").open("rb") as f:
with resources.files("airflow_mcp_server.resources").joinpath("v1.yaml").open("rb") as f:
return f.read()