CI: Disable Test reporting

I've wasted enough time on this.
This commit is contained in:
Vishesh Handa
2022-02-23 16:50:28 +01:00
parent 6c69209f97
commit 76f9dec140
4 changed files with 24 additions and 23 deletions

View File

@ -20,13 +20,13 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- name: Test - name: Test
run: ./scripts/test.sh run: ./scripts/test.sh
- name: Test Report # - name: Test Report
uses: dorny/test-reporter@v1 # uses: dorny/test-reporter@v1
if: success() || failure() # if: success() || failure()
with: # with:
name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }} # name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
path: test-results.xml # path: test-results.xml
reporter: jest-junit # reporter: jest-junit
- name: Unlock Secrets - name: Unlock Secrets
env: env:
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }} GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}

View File

@ -20,13 +20,13 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- name: Test - name: Test
run: ./scripts/test.sh run: ./scripts/test.sh
- name: Test Report # - name: Test Report
uses: dorny/test-reporter@v1 # uses: dorny/test-reporter@v1
if: success() || failure() # if: success() || failure()
with: # with:
name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }} # name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
path: test-results.xml # path: test-results.xml
reporter: jest-junit # reporter: jest-junit
- name: Unlock Secrets - name: Unlock Secrets
env: env:
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }} GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}

View File

@ -22,13 +22,13 @@ jobs:
flutter-version: "2.8.1" flutter-version: "2.8.1"
- name: Test - name: Test
run: ./scripts/test.sh run: ./scripts/test.sh
- name: Test Report # - name: Test Report
uses: dorny/test-reporter@v1 # uses: dorny/test-reporter@v1
if: success() || failure() # if: success() || failure()
with: # with:
name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }} # name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
path: test-results.xml # path: test-results.xml
reporter: jest-junit # reporter: jest-junit
- name: Unlock Secrets - name: Unlock Secrets
env: env:
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }} GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}

View File

@ -6,5 +6,6 @@
set -eux pipefail set -eux pipefail
flutter test --machine | tee test-results.json flutter test
cat test-results.json | dart run junitreport:tojunit --output test-results.xml # --machine | tee test-results.json
# cat test-results.json | dart run junitreport:tojunit --output test-results.xml