diff --git a/test_rpc.py b/test_rpc.py deleted file mode 100644 index 1a03197..0000000 --- a/test_rpc.py +++ /dev/null @@ -1,15 +0,0 @@ -import sys -from pathlib import Path - -sys.path.insert(0, str(Path(__file__).parent / "src")) - -from tryton_mcp.config import settings - -client = settings.get_client() - -client.connect() - -name = "model.party.party.read" -args = ([1], ["id", "name", "code"], {}) - -client.call(name, args)