Skip to content

Commit

Permalink
Ignore BSD and linux-x86 missing test result fails
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed May 12, 2024
1 parent b4ee9de commit 17755ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 17755ba

Please sign in to comment.