Skip to content

Commit cd6931d

Browse files
committed
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.
1 parent d905701 commit cd6931d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/AndroidCIWithGmd.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,4 @@ jobs:
3434
uses: actions/upload-artifact@v3
3535
with:
3636
name: test-reports
37-
path: |
38-
'**/*/build/reports/androidTests/'
37+
path: '**/build/reports/androidTests'

.github/workflows/Build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ jobs:
9797
uses: actions/upload-artifact@v3
9898
with:
9999
name: test-reports-${{ matrix.api-level }}
100-
path: '*/build/reports/androidTests'
100+
path: '**/build/reports/androidTests'

0 commit comments

Comments
 (0)