Fix instrumented test reports archives

- Fixes missing tests reports from `AndroidCIWithGmd.yaml`
  ```
  Warning: No files were found with the provided path: '**/*/build/reports/androidTests/'. No artifacts will be uploaded.
  ```
- Fixes missing tests reports from `Build.yaml`, where only top-level tests from `:app` were reported.
pull/703/head
Simon Marquis 2 years ago
parent d905701028
commit cd6931d673

@ -34,5 +34,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: test-reports
path: |
'**/*/build/reports/androidTests/'
path: '**/build/reports/androidTests'

@ -97,4 +97,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: test-reports-${{ matrix.api-level }}
path: '*/build/reports/androidTests'
path: '**/build/reports/androidTests'

Loading…
Cancel
Save