0

I can't find any way to change the name of the surefire-report that uiautomator together with android-maven-plugin outputs.

Anyone know if its possible? Or any work around?

jelgh
  • 705
  • 1
  • 6
  • 22

1 Answers1

1

If you meant the TEST-<STUFF>.xml files with test report, then this is not configurable, refer to https://github.com/jayway/maven-android-plugin/blob/master/src/main/java/com/jayway/maven/plugins/android/standalonemojos/UIAutomatorMojo.java, writeJunitReportToFile() method (or just search for "TEST-" pattern).

A workaround might be moving the report files with antrun.

patrungel
  • 843
  • 8
  • 13
  • Thank you, I looked into the code and noticed this as well. Thank you for workaround alternative! – jelgh May 04 '13 at 06:51
  • I just submitted a pull request to maven-android-plugin. I added the parameter reportSuffix to UIAutomator. – jelgh May 05 '13 at 16:04