mirror of
https://github.com/Radarr/Radarr
synced 2026-01-26 09:23:39 +01:00
fix(ci): make test failures block builds (#105)
- Remove continue-on-error from integration tests - Set fail-on-error: true on test reporter Closes #56 Co-authored-by: admin <admin@ardentleatherworks.com>
This commit is contained in:
parent
87605c0214
commit
b413c390fd
1 changed files with 1 additions and 4 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
|
@ -104,9 +104,6 @@ jobs:
|
|||
cp -r _output/net8.0/linux-x64/publish/* bin/
|
||||
chmod +x bin/Radarr
|
||||
./test.sh Linux Integration Test
|
||||
# Integration tests may fail in CI without full environment setup
|
||||
# Remove continue-on-error once tests are stable
|
||||
continue-on-error: true
|
||||
|
||||
- name: Report test results
|
||||
uses: dorny/test-reporter@v2
|
||||
|
|
@ -116,7 +113,7 @@ jobs:
|
|||
path: "**/TestResult.xml"
|
||||
list-tests: "failed"
|
||||
reporter: dotnet-nunit
|
||||
fail-on-error: false
|
||||
fail-on-error: true
|
||||
fail-on-empty: false
|
||||
|
||||
- name: Generate coverage report
|
||||
|
|
|
|||
Loading…
Reference in a new issue