add back *nix tests

This commit is contained in:
Roy Ashbrook
2021-11-16 16:28:03 -05:00
parent 956cf5aa49
commit 00f7278115

View File

@@ -98,52 +98,52 @@ jobs:
testResultsFiles: '**/TestResults*.xml' testResultsFiles: '**/TestResults*.xml'
failTaskOnFailedTests: true failTaskOnFailedTests: true
# - job: Ubuntu - job: Ubuntu
# pool: pool:
# vmImage: 'ubuntu-latest' vmImage: 'ubuntu-latest'
# steps: steps:
# - powershell: 'Install-Module -Name Pester -Force' - powershell: 'Install-Module -Name Pester -Force'
# displayName: 'Update Pester' displayName: 'Update Pester'
# - powershell: './CI/CI.ps1 -Test' - powershell: './CI/CI.ps1 -Test'
# displayName: 'Install and Test' displayName: 'Install and Test'
# - task: PublishTestResults@2 - task: PublishTestResults@2
# inputs: inputs:
# testResultsFormat: 'NUnit' testResultsFormat: 'NUnit'
# testResultsFiles: '**/TestResults*.xml' testResultsFiles: '**/TestResults*.xml'
# failTaskOnFailedTests: true failTaskOnFailedTests: true
# - job: macOS - job: macOS
# pool: pool:
# vmImage: 'macOS-latest' vmImage: 'macOS-latest'
# steps: steps:
# - script: brew install mono-libgdiplus - script: brew install mono-libgdiplus
# displayName: 'Install mono-libgdiplus' displayName: 'Install mono-libgdiplus'
# - powershell: 'Install-Module -Name Pester -Force' - powershell: 'Install-Module -Name Pester -Force'
# displayName: 'Update Pester' displayName: 'Update Pester'
# - powershell: './CI/CI.ps1 -Test' - powershell: './CI/CI.ps1 -Test'
# displayName: 'Install and Test' displayName: 'Install and Test'
# - task: PublishTestResults@2 - task: PublishTestResults@2
# inputs: inputs:
# testResultsFormat: 'NUnit' testResultsFormat: 'NUnit'
# testResultsFiles: '**/TestResults*.xml' testResultsFiles: '**/TestResults*.xml'
# failTaskOnFailedTests: true failTaskOnFailedTests: true
# - job: macOSNoDeps - job: macOSNoDeps
# pool: pool:
# vmImage: 'macOS-latest' vmImage: 'macOS-latest'
# steps: steps:
# - powershell: 'Install-Module -Name Pester -Force' - powershell: 'Install-Module -Name Pester -Force'
# displayName: 'Update Pester' displayName: 'Update Pester'
# - powershell: './CI/CI.ps1 -TestImportOnly' - powershell: './CI/CI.ps1 -TestImportOnly'
# displayName: 'Install and Test Import Only' displayName: 'Install and Test Import Only'
# - task: PublishTestResults@2 - task: PublishTestResults@2
# inputs: inputs:
# testResultsFormat: 'NUnit' testResultsFormat: 'NUnit'
# testResultsFiles: '**/TestResults*.xml' testResultsFiles: '**/TestResults*.xml'
# failTaskOnFailedTests: true failTaskOnFailedTests: true