Closed mwshubham closed 4 months ago
This issue doesn't look related to the androidx.test libraries. I'd suggest reaching out to the Android gradle team instead. https://developer.android.com/studio/report-bugs#:~:text=To%20report%20a%20bug%20for,the%20tools%20you're%20using.
Previously, all task with Test were enabled. Removing the below enabled check from these task works.
gradle.taskGraph.whenReady { graph ->
graph.allTasks.findAll { it.name ==~ /.*Test.*/ }*.enabled = true
}
Description
Steps to Reproduce
During running a instrumented test on code base with high single digit modules. Facing this build issue.
Expected Results
Process to be start and test should be complete
Actual Results
Build failure issue.
AndroidX Test and Android OS Versions
androidTestImplementation 'androidx.test:runner:1.5.2'
Link to a public git repo demonstrating the problem:
NA
Detailed stacktrace