Skip to content

Commit

Permalink
Integrations tests may fail
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso committed Dec 9, 2023
1 parent fc2a25e commit cc5d13c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
run: mkdir reports

- name: run unit tests
continue-on-error: true
run: swift test --filter='AppcastTests' --parallel --xunit-output reports/AppcastTests.xml

- name: report unit test results
Expand All @@ -48,10 +49,11 @@ jobs:
name: 'results-unit-tests (${{ matrix.xcode }})'
path: reports/AppcastTests.xml
reporter: java-junit
fail-on-error: true

- name: run integration tests
continue-on-error: true
run: swift test --filter='IntegrationTests' --parallel --xunit-output reports/IntegrationTests.xml
run: swift test --filter='IntegrationTests' --parallel --xunit-output reports/IntegrationTests.xml || true

- name: report integration test results
uses: dorny/test-reporter@afe6793191b75b608954023a46831a3fe10048d4
Expand All @@ -60,4 +62,5 @@ jobs:
name: 'results-integration-tests (${{ matrix.xcode }})'
path: reports/IntegrationTests.xml
reporter: java-junit
fail-on-error: false

0 comments on commit cc5d13c

Please sign in to comment.