Clean up for only MCP Server
This commit is contained in:
12
tests/tools/test_models.py
Normal file
12
tests/tools/test_models.py
Normal file
@@ -0,0 +1,12 @@
|
||||
"""Test models for Airflow tool tests."""
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class TestRequestModel(BaseModel):
|
||||
"""Test request model."""
|
||||
|
||||
path_id: int
|
||||
query_filter: str | None = None
|
||||
body_name: str
|
||||
body_value: int
|
||||
Reference in New Issue
Block a user