We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e053ff + 961894f commit 7b35d0bCopy full SHA for 7b35d0b
.github/workflows/main.yml
@@ -61,7 +61,13 @@ jobs:
61
- name: Run tests with coverage
62
run: |
63
make cov
64
-
+
65
+ - name: Upload test results to Codecov
66
+ if: ${{ !cancelled() }} # Run even if tests fail
67
+ uses: codecov/test-results-action@v1
68
+ with:
69
+ token: ${{ secrets.CODECOV_TOKEN }}
70
71
- name: Upload coverage reports to Codecov
72
uses: codecov/codecov-action@v4.0.1
73
with:
Makefile
@@ -16,7 +16,9 @@ cov:
16
--cov-config=.coveragerc \
17
--cov uiautomator2 \
18
--cov-report xml \
19
- --cov-report term
+ --cov-report term \
20
+ --junitxml=junit.xml -o junit_family=legacy
21
22
23
sync:
24
cd uiautomator2/assets; ./sync.sh; cd -
0 commit comments