Tox Testing MCP Server

by that1guy15

run_tox_tests

Execute Python tests using pytest with configurable modes like all, file, case, or directory. Supports specific test groups including clients, API, auth, uploads, and routes.

Instructions

Run tox tests with different modes and options

Input Schema

NameRequiredDescriptionDefault
directoryNoDirectory containing tests to run (required for directory mode)
groupNoTest group to run in all mode (defaults to clients)
modeYesTest execution mode
testCaseNoSpecific test case to run (required for case mode)
testFileNoSpecific test file to run (required for file and case modes)

Input Schema (JSON Schema)

{ "properties": { "directory": { "description": "Directory containing tests to run (required for directory mode)", "type": "string" }, "group": { "description": "Test group to run in all mode (defaults to clients)", "enum": [ "clients", "api", "auth", "uploads", "routes" ], "type": "string" }, "mode": { "description": "Test execution mode", "enum": [ "all", "file", "case", "directory" ], "type": "string" }, "testCase": { "description": "Specific test case to run (required for case mode)", "type": "string" }, "testFile": { "description": "Specific test file to run (required for file and case modes)", "type": "string" } }, "required": [ "mode" ], "type": "object" }

You must be authenticated.

Other Tools from Tox Testing MCP Server

Related Tools

ID: ihmm915s2t