I'm trying to run two different sets of instrumentation tests in two different modules. It's my understanding that if I add the mergeAndroidReports
command to each of these test tasks that in the root project in the build folder I should see a test report which combines all tests run.
At this moment I see a test report in each module created as well as a blank test report created at the project level build folder.
It appears it's setting up the blank report to combine but not actually completing the report. Has anyone run into issues using the mergeAndroidReports
command?
Extra info:
I have the following added to the project level build.gradle
file:
apply plugin: 'android-reporting'
Again there are no errors and I do see the following directories are being generated at the project level:
build/reports/androidTests/index.html
But this is empty: nothing is added to this report.
Has anyone experienced this issue?