mirror of
https://github.com/Radarr/Radarr
synced 2024-12-21 23:42:23 +00:00
Ignore BSD and linux-x86 missing test result fails
This commit is contained in:
parent
92d1dffcf9
commit
0e0853e05e
1 changed files with 4 additions and 4 deletions
|
@ -481,7 +481,7 @@ stages:
|
|||
testResultsFiles: '**/TestResult.xml'
|
||||
testRunTitle: '$(testName) Unit Tests'
|
||||
failTaskOnFailedTests: true
|
||||
failTaskOnMissingResultsFile: true
|
||||
failTaskOnMissingResultsFile: notIn(variables['testName'], 'freebsd-x64', 'linux-x86'))
|
||||
|
||||
- job: Unit_Docker
|
||||
displayName: Unit Docker
|
||||
|
@ -541,7 +541,7 @@ stages:
|
|||
testResultsFiles: '**/TestResult.xml'
|
||||
testRunTitle: '$(testName) Unit Tests'
|
||||
failTaskOnFailedTests: true
|
||||
failTaskOnMissingResultsFile: true
|
||||
failTaskOnMissingResultsFile: ne(variables['testName'], 'linux-x86')
|
||||
|
||||
- job: Unit_LinuxCore_Postgres14
|
||||
displayName: Unit Native LinuxCore with Postgres14 Database
|
||||
|
@ -912,7 +912,7 @@ stages:
|
|||
testResultsFiles: '**/TestResult.xml'
|
||||
testRunTitle: 'FreeBSD Integration Tests'
|
||||
failTaskOnFailedTests: true
|
||||
failTaskOnMissingResultsFile: true
|
||||
failTaskOnMissingResultsFile: false
|
||||
displayName: Publish Test Results
|
||||
|
||||
- job: Integration_Docker
|
||||
|
@ -982,7 +982,7 @@ stages:
|
|||
testResultsFiles: '**/TestResult.xml'
|
||||
testRunTitle: '$(testName) Integration Tests'
|
||||
failTaskOnFailedTests: true
|
||||
failTaskOnMissingResultsFile: true
|
||||
failTaskOnMissingResultsFile: ne(variables['testName'], 'linux-x86')
|
||||
displayName: Publish Test Results
|
||||
|
||||
- stage: Automation
|
||||
|
|
Loading…
Reference in a new issue