Android
A guide for generating Trunk-compatible test reports for Android projects
Checklist
Generating reports
Report file path
android {
testOptions {
unitTests {
all {
reports {
junitXml {
outputLocation = file("./junit-reports")
}
}
}
}
}
}android {
testOptions {
unitTests {
all {
reports {
junitXml.outputLocation.set(file("./junit-reports"))
}
}
}
}
}Disable Retries
Try It Locally
The Validate Command
Test Upload
Next Steps
Last updated













