Format files with ruff (#562)

This commit is contained in:
ihrpr
2025-04-23 05:06:51 +01:00
committed by GitHub
parent babb477dff
commit b4c7db6a50
2 changed files with 3 additions and 6 deletions

View File

@@ -114,17 +114,13 @@ async def test_read_resource_file(mcp: FastMCP):
@pytest.mark.anyio
async def test_delete_file(mcp: FastMCP, test_dir: Path):
await mcp.call_tool(
"delete_file", arguments={"path": str(test_dir / "example.py")}
)
await mcp.call_tool("delete_file", arguments={"path": str(test_dir / "example.py")})
assert not (test_dir / "example.py").exists()
@pytest.mark.anyio
async def test_delete_file_and_check_resources(mcp: FastMCP, test_dir: Path):
await mcp.call_tool(
"delete_file", arguments={"path": str(test_dir / "example.py")}
)
await mcp.call_tool("delete_file", arguments={"path": str(test_dir / "example.py")})
res_iter = await mcp.read_resource("file://test_dir/example.py")
res_list = list(res_iter)
assert len(res_list) == 1