asadmansr / android-test-report-action

GitHub Action that prints Android test reports.
https://github.com/marketplace/actions/android-test-report-action
37 stars 8 forks source link

Support for Gradle multi-module project #14

Closed cvillaseca closed 3 years ago

cvillaseca commented 3 years ago

Hi 👋

I was trying this Github Action and I noticed that the report generated takes only the XML tests results inside the main module (app), the rest of the reports are inside the build/test-results of each module. Are you planning to support multi-module projects soon?

Thanks

cvillaseca commented 3 years ago

I was able to fix it using a wildcard

      - name: Upload Test Reports Folder
        uses: actions/upload-artifact@v2
        if: ${{ always() }}
        with:
          name: reports
          path: '**/build/test-results'