mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-08-06 15:21:21 +08:00
CI: Disable Test reporting
I've wasted enough time on this.
This commit is contained in:
14
.github/workflows/android.yml
vendored
14
.github/workflows/android.yml
vendored
@ -20,13 +20,13 @@ jobs:
|
||||
fetch-depth: 0
|
||||
- name: Test
|
||||
run: ./scripts/test.sh
|
||||
- name: Test Report
|
||||
uses: dorny/test-reporter@v1
|
||||
if: success() || failure()
|
||||
with:
|
||||
name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
||||
path: test-results.xml
|
||||
reporter: jest-junit
|
||||
# - name: Test Report
|
||||
# uses: dorny/test-reporter@v1
|
||||
# if: success() || failure()
|
||||
# with:
|
||||
# name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
||||
# path: test-results.xml
|
||||
# reporter: jest-junit
|
||||
- name: Unlock Secrets
|
||||
env:
|
||||
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
|
||||
|
14
.github/workflows/linux.yml
vendored
14
.github/workflows/linux.yml
vendored
@ -20,13 +20,13 @@ jobs:
|
||||
fetch-depth: 0
|
||||
- name: Test
|
||||
run: ./scripts/test.sh
|
||||
- name: Test Report
|
||||
uses: dorny/test-reporter@v1
|
||||
if: success() || failure()
|
||||
with:
|
||||
name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
||||
path: test-results.xml
|
||||
reporter: jest-junit
|
||||
# - name: Test Report
|
||||
# uses: dorny/test-reporter@v1
|
||||
# if: success() || failure()
|
||||
# with:
|
||||
# name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
||||
# path: test-results.xml
|
||||
# reporter: jest-junit
|
||||
- name: Unlock Secrets
|
||||
env:
|
||||
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
|
||||
|
14
.github/workflows/macos.yml
vendored
14
.github/workflows/macos.yml
vendored
@ -22,13 +22,13 @@ jobs:
|
||||
flutter-version: "2.8.1"
|
||||
- name: Test
|
||||
run: ./scripts/test.sh
|
||||
- name: Test Report
|
||||
uses: dorny/test-reporter@v1
|
||||
if: success() || failure()
|
||||
with:
|
||||
name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
||||
path: test-results.xml
|
||||
reporter: jest-junit
|
||||
# - name: Test Report
|
||||
# uses: dorny/test-reporter@v1
|
||||
# if: success() || failure()
|
||||
# with:
|
||||
# name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
||||
# path: test-results.xml
|
||||
# reporter: jest-junit
|
||||
- name: Unlock Secrets
|
||||
env:
|
||||
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
|
||||
|
@ -6,5 +6,6 @@
|
||||
|
||||
set -eux pipefail
|
||||
|
||||
flutter test --machine | tee test-results.json
|
||||
cat test-results.json | dart run junitreport:tojunit --output test-results.xml
|
||||
flutter test
|
||||
# --machine | tee test-results.json
|
||||
# cat test-results.json | dart run junitreport:tojunit --output test-results.xml
|
Reference in New Issue
Block a user