diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index d8c3e2a5..a920a98b 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -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 }} diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index ff144f6a..5a492f8b 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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 }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 7e487a56..ecdde895 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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 }} diff --git a/scripts/test.sh b/scripts/test.sh index 9788a764..7575e25f 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -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 \ No newline at end of file +flutter test +# --machine | tee test-results.json +# cat test-results.json | dart run junitreport:tojunit --output test-results.xml \ No newline at end of file