Skip to content

Commit

Permalink
finished?
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Oct 5, 2020
1 parent 2a860db commit d481791
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ steps:
displayName: dotnet test -f net472
inputs:
command: test
arguments: -c $(BuildConfiguration) -p:Platform="$(BuildPlatform)" -f net472 --filter "TestCategory!=FailsInCloudTest" -v n /p:CollectCoverage=true --settings "$(Build.Repository.LocalPath)/azure-pipelines/$(Agent.OS).runsettings"
arguments: --no-build -c $(BuildConfiguration) -f net472 --filter "TestCategory!=FailsInCloudTest" -v n /p:CollectCoverage=true --settings "$(Build.Repository.LocalPath)/azure-pipelines/$(Agent.OS).runsettings"
workingDirectory: test/IronPigeon.Tests
testRunTitle: net472-$(Agent.JobName)
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
Expand All @@ -24,7 +24,7 @@ steps:
displayName: dotnet test -f netcoreapp2.1
inputs:
command: test
arguments: -c $(BuildConfiguration) -p:Platform="$(BuildPlatform)" -f netcoreapp2.1 --filter "TestCategory!=FailsInCloudTest" -v n /p:CollectCoverage=true --settings "$(Build.Repository.LocalPath)/azure-pipelines/$(Agent.OS).runsettings"
arguments: --no-build -c $(BuildConfiguration) -f netcoreapp2.1 --filter "TestCategory!=FailsInCloudTest" -v n /p:CollectCoverage=true --settings "$(Build.Repository.LocalPath)/azure-pipelines/$(Agent.OS).runsettings"
workingDirectory: test/IronPigeon.Tests
testRunTitle: netcoreapp2.1-$(Agent.JobName)
env:
Expand All @@ -34,7 +34,7 @@ steps:
displayName: dotnet test -f netcoreapp3.1
inputs:
command: test
arguments: -c $(BuildConfiguration) -p:Platform="$(BuildPlatform)" -f netcoreapp3.1 --filter "TestCategory!=FailsInCloudTest" -v n /p:CollectCoverage=true --settings "$(Build.Repository.LocalPath)/azure-pipelines/$(Agent.OS).runsettings"
arguments: --no-build -c $(BuildConfiguration) -p:Platform="$(BuildPlatform)" -f netcoreapp3.1 --filter "TestCategory!=FailsInCloudTest" -v n /p:CollectCoverage=true --settings "$(Build.Repository.LocalPath)/azure-pipelines/$(Agent.OS).runsettings"
testRunTitle: netcoreapp3.1-$(Agent.JobName)
env:
${{ parameters.test_secrets }}
Expand Down

0 comments on commit d481791

Please sign in to comment.