-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish Test Report from flutter integration test
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -328,6 +328,16 @@ jobs: | |
--suppress-analytics | ||
working-directory: ./flutter/realm_flutter/tests | ||
|
||
- name: Publish Test Report | ||
uses: dorny/[email protected] | ||
if: success() || failure() | ||
with: | ||
name: Test Results Flutter iOS | ||
path: test-results.json | ||
reporter: dart-json | ||
only-summary: true | ||
working-directory: ./flutter/realm_flutter/tests | ||
|
||
cleanup-cluster-flutter-ios: | ||
name: Cleanup Cluster for Flutter iOS | ||
uses: ./.github/workflows/terminate-baas.yml | ||
|
@@ -427,6 +437,16 @@ jobs: | |
script: flutter test integration_test/all_tests.dart --dart-define=BAAS_BAASAAS_API_KEY=$BAAS_BAASAAS_API_KEY --dart-define=BAAS_DIFFERENTIATOR=$BAAS_DIFFERENTIATOR --file-reporter=json:test-results.json --suppress-analytics | ||
working-directory: ./flutter/realm_flutter/tests | ||
|
||
- name: Publish Test Report | ||
uses: dorny/[email protected] | ||
if: success() || failure() | ||
with: | ||
name: Test Results Flutter Android | ||
path: test-results.json | ||
reporter: dart-json | ||
only-summary: true | ||
working-directory: ./flutter/realm_flutter/tests | ||
|
||
cleanup-cluster-flutter-android: | ||
name: Cleanup Cluster for Flutter Android | ||
uses: ./.github/workflows/terminate-baas.yml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,3 +82,13 @@ jobs: | |
--suppress-analytics | ||
shell: bash | ||
working-directory: ./flutter/realm_flutter/tests | ||
|
||
- name: Publish Test Report | ||
uses: dorny/[email protected] | ||
if: success() || failure() | ||
with: | ||
name: Test Results Flutter ${{ inputs.os }} ${{ inputs.architecture }} | ||
path: test-results.json | ||
reporter: dart-json | ||
only-summary: true | ||
working-directory: ./flutter/realm_flutter/tests |