Gradle-mcp running_gradle_tests
install
source · Clone the upstream repo
git clone https://github.com/rnett/gradle-mcp
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/rnett/gradle-mcp "$T" && mkdir -p ~/.claude/skills && cp -r "$T/src/main/skills/running_gradle_tests" ~/.claude/skills/rnett-gradle-mcp-running-gradle-tests && rm -rf "$T"
manifest:
src/main/skills/running_gradle_tests/SKILL.mdsource content
Authoritative Gradle Test Execution & Diagnostics
Executes tests with deep diagnostic tools to isolate and fix failures fast, ensuring maximum code quality and build reliability.
Constitution
- ALWAYS use the
tool instead ofgradle
via shell../gradlew - ALWAYS use the
flag for surgical test selection to minimize feedback loops.--tests - ALWAYS provide absolute paths for
.projectRoot - ALWAYS prefer foreground execution (default) unless the test suite is extremely long-running (>2 minutes) or you explicitly intend to perform independent research while it proceeds.
- ONLY use
for managed background orchestration when context isolation and non-blocking exploration are required.background: true - STRONGLY PREFERRED: Use
for all test diagnostics. It provides isolated output and full stack traces that are often truncated in the main console.inspect_build - ALWAYS use
withinspect_build
andmode: "details"
to access full test output and stack traces.testName="..." - NEVER use
ortaskPath
to investigate specific test failures; these provide the overall task log which is often truncated and lacks per-test isolation.captureTaskOutput
Surgical Test Inspection with inspect_build
inspect_buildWhen tests fail,
inspect_build is your most powerful diagnostic tool. It provides isolated output and full stack traces that are often truncated in the main console.
1. List All Failed Tests (Summary)
Use
testOutcome="FAILED" to quickly see which tests failed without being overwhelmed by logs.
- Example:
inspect_build(buildId="ID", testOutcome="FAILED")
2. Get Full Test Details (Details)
CRITICAL: ALWAYS use
mode="details" and testName to see the complete stdout, stderr, and stack trace for a specific test.
- Unique Prefix Support: You can provide a unique prefix of the test name (e.g.,
instead of the full FQN). If the prefix is unique, the tool will automatically select the test. If ambiguous, it will return a list of matching names for refinement.testName="com.example.MyTest" - Example:
inspect_build(buildId="ID", mode="details", testName="com.example.MyTest.myMethod")
3. Filter by Name (Summary)
Use
testName with the default mode="summary" to see all executions of a test (e.g., across different projects or iterations).
- Example:
inspect_build(buildId="ID", testName="MyTest")
4. Progress Monitoring
Use
timeout, waitFor, or waitForTask to block until a condition is met in a background test run.
- Example:
inspect_build(buildId="ID", timeout=60, waitForTask=":app:test") - Wait for completion: If
is set without a wait condition, the tool waits for the build to finish.timeout
Directives
- ALWAYS use foreground for authoritative tests: If you intend to wait for results, ALWAYS use foreground execution. It provides superior progressive disclosure and simpler control flow than starting a background build only to
immediately call
.inspect_build(timeout=...) - Background ONLY for long test suites: Use
ONLY for test suites that take a long time to run and you explicitly intend to perform independent research while they proceed.background: true - Foreground tests are safe: Do not fear running high-output test suites in the foreground. The
tool uses progressive disclosure to provide concise summaries and structured results, keeping session history clean and efficient.gradle - Monitor with
: Useinspect_build
to check the status of background test runs or to retrieve structured output and stack traces for failed tests.inspect_build - Check for environment failures: If a test run fails with a general error, use
to check for compilation or configuration issues.inspect_build(failures={}) - Investigate specifically: Use the
option intestName
withinspect_build
to isolate specific failure details. For detailed diagnostic workflows, see themode="details"
reference.test_diagnostics.md
Authoritative Test Selection Patterns
The
--tests flag supports powerful, high-precision filtering. Use these patterns to minimize execution time and context noise.
1. Simple Filters
- Exact Class:
--tests com.example.MyTest - Exact Method:
--tests com.example.MyTest.myTestMethod - Wildcard Method:
(Runs all methods starting with 'test')--tests com.example.MyTest.test*
2. Wildcard Filters (*
and ?
)
*?- Package Filter:
(Runs all tests in the 'service' package)--tests com.example.service.* - Class Prefix:
(Runs all classes ending in 'IntegrationTest')--tests *IntegrationTest - Character Wildcard:
(Matches Test1, TestA, etc.)--tests com.example.Test?
3. Syntax Rules
- No Class Path: Patterns match against the fully qualified name of the test class or method.
- Multi-Filter: You can provide multiple
flags to run a specific selection of tests.--testsgradle(commandLine=["test", "--tests", "ClassA", "--tests", "ClassB"])
Authoritative Task Path Syntax
Understanding how to target tests in a multi-project build is critical to avoid running more tests than necessary.
1. Task Selectors (Recursive)
Providing
test without a leading colon executes the test task in every project (root and all subprojects) that has one.
- Example:
-> Searches for and runs 'MyTest' in all projects.gradle(commandLine=["test", "--tests", "MyTest"])
2. Absolute Task Paths (Targeted)
Providing a path with a leading colon targets a single specific project.
- Root Project Only:
gradle(commandLine=[":test", "--tests", "MyTest"]) - Subproject Only:
gradle(commandLine=[":app:test", "--tests", "MyTest"])
When to Use
- Targeted Test Execution: When you need to run specific tests or suites using precise filters (like
) to minimize feedback loops.--tests - Rapid Failure Isolation: When a build has failed and you need high-resolution diagnostics, including stdout/stderr and detailed stack traces.
- Large-Scale Suite Management: When running extensive test suites that benefit from managed background execution and real-time progress monitoring.
Workflows
Running Specific Tests
- Identify the project path (e.g.,
) and the test filter (e.g.,:app
).com.example.MyTestClass* - Call
withgradle
includingcommandLine
.--tests - If the tool reports failures, review the included console output.
Investigating Failures
- Identify the
from the result.BuildId - Use
to list all failed tests.inspect_build(buildId=ID, testOutcome="FAILED") - CRITICAL: Use
to see the full output and stack trace for a specific test.inspect_build(buildId=ID, mode="details", testName=TNAME)
- DO NOT use
ortaskPath
for this.captureTaskOutput - Per-test output is authoritative, isolated, and contains full stack traces that are often omitted from the task console.
Examples
Run a single test class in a specific subproject
{ "commandLine": [":module-a:test", "--tests", "com.example.service.MyServiceTest"] } // Reasoning: Using an absolute task path and exact class filter for the fastest possible feedback loop.
List all failed tests in a build
{ "buildId": "build_20240301_130000_def456", "testOutcome": "FAILED" }
// Reasoning: Using inspect_build to isolate only the failures from a large test suite.
### Look up details for a specific failed test ```json { "buildId": "build_20240301_130000_def456", "mode": "details", "testName": "com.example.a.MyTest.shouldFail" }
// Reasoning: Retrieving the full stack trace and isolated stdout/stderr for a specific failure.
## Troubleshooting - **Missing environment variables**: Set `invocationArguments: { envSource: "SHELL" }` if Gradle cannot find expected env vars (e.g., `JAVA_HOME`). ## Resources - [Test Diagnostics](./references/test_diagnostics.md)