Skip to content

Commit

Permalink
Merge pull request #1143 from LafayetteCollegeLibraries/av-old-hyrax-…
Browse files Browse the repository at this point in the history
…-allow-failures

allow test reporting to fail without ruining workflows
  • Loading branch information
jwellnit authored Sep 25, 2024
2 parents 93a7ffe + 9b9cd30 commit eccb206
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ jobs:
export PATH="$(dirname $(which geckodriver)):${PATH}"
mkdir /tmp/test-results
bundle exec rspec --backtrace --format progress --format RspecJunitFormatter --out /tmp/test-results/rspec.xml
-
name: Publish UndercoverCI report
continue-on-error: true
run: |
ruby -e "$(curl -s https://undercover-ci.com/uploader.rb)" -- \
--repo ${{ github.repository }} \
--commit ${{ github.event.pull_request.head.sha || github.sha }} \
Expand All @@ -165,13 +169,15 @@ jobs:
name: Publish RSpec report
uses: mikepenz/action-junit-report@v3
if: always()
continue-on-error: true
with:
check_name: Test summary
report_paths: /tmp/test-results/*.xml
-
name: Publish coverage
uses: joshmfrankel/simplecov-check-action@main
if: always()
continue-on-error: true
with:
check_job_name: Test coverage
minimum_suite_coverage: 95
Expand Down

0 comments on commit eccb206

Please sign in to comment.