linkedin / test-butler

Reliable Android Testing, at your service
Apache License 2.0
1.05k stars 92 forks source link

Improve GRADLE build Performance #119

Closed shisheng-1 closed 3 years ago

shisheng-1 commented 3 years ago

Parallel test execution maxParallelForks. Gradle can run multiple test cases in parallel by setting maxParallelForks.

Disable report generation. We can conditionally disable it by setting reports.html.required = false; reports.junitXml.required = false. If you need to generate reports, add -PcreateReports to the end of Gradle's build command line.

===================== If there are any inappropriate modifications in this PR, please give me a reply and I will change them.

drewhannay commented 3 years ago

Given the number and type of tests in this project (specifically Android tests), these changes are not needed