Skip to content

Commit d3e5aba

Browse files
authored
Enhance integration test workflow with debug outputs
Updated the integration test workflow to include directory listing and current path checks.
1 parent d459d97 commit d3e5aba

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/integrationtest.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,20 @@ jobs:
3434
name: coverage-ec
3535
path: app/
3636
- name: Check Jacoco report
37-
run: ls -R ./
37+
run: |
38+
pwd
39+
ls -R ./
40+
3841
3942
4043
# 이미 instrumentation test를 통해 .ec 파일이 생성되어 있다고 가정
4144
# 여기서는 리포트만 생성
4245
- name: Generate Jacoco coverage report
4346
run: ./gradlew pixel6DebugAndroidTestCoverage --rerun-tasks
4447
- name: Check Jacoco report
45-
run: ls -R ./
48+
run: |
49+
pwd
50+
ls -R ./
4651
- name: Upload coverage report artifact
4752
uses: actions/upload-artifact@v4
4853
with:

0 commit comments

Comments
 (0)