Linux portable builds currently do not run tests (#5983)
This commit is contained in:
parent
663df18046
commit
3a58cac351
2 changed files with 5 additions and 18 deletions
|
@ -60,7 +60,11 @@ platformList.each { platform ->
|
|||
|
||||
Utilities.setMachineAffinity(newJob, osUsedForMachineAffinity, 'latest-or-auto')
|
||||
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
|
||||
Utilities.addMSTestResults(newJob, '**/*.trx')
|
||||
// Remove this check once tests work for 2.0. Until that time Linux portable tests will fail so we
|
||||
// don't run the tests and there won't be any .trx file.
|
||||
if (os != 'Linux') {
|
||||
Utilities.addMSTestResults(newJob, '**/*.trx')
|
||||
}
|
||||
Utilities.addGithubPRTriggerForBranch(newJob, branch, "${os} ${architecture} ${configuration} Build")
|
||||
}
|
||||
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assemblies>
|
||||
<assembly name="dotnet-nuget.UnitTests.dll" environment="64-bit .NET (unknown version) [collection-per-class, parallel (8 threads)]" test-framework="xUnit.net 2.2.0.3330" run-date="2016-11-11" run-time="11:10:10" total="9" passed="9" failed="0" skipped="0" time="0.423" errors="0">
|
||||
<errors />
|
||||
<collection total="9" passed="9" failed="0" skipped="0" name="Test collection for Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" time="0.186">
|
||||
<test name="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand.ItPassesCommandIfSupported(inputArgs: [\"push\", \"foo.1.0.0.nupkg\"], result: 0)" type="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" method="ItPassesCommandIfSupported" time="0.1749716" result="Pass" />
|
||||
<test name="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand.ItPassesCommandIfSupported(inputArgs: [\"push\", \"foo.1.0.0.nupkg\", \"-k\", \"12345678-1234-1234-1234-123456789012\"], result: 0)" type="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" method="ItPassesCommandIfSupported" time="0.0014575" result="Pass" />
|
||||
<test name="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand.ItPassesCommandIfSupported(inputArgs: [\"push\", \"foo.1.0.0.nupkg\", \"--api-key\", \"12345678-1234-1234-1234-123456789012\", \"--source\", ...], result: 0)" type="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" method="ItPassesCommandIfSupported" time="0.000841" result="Pass" />
|
||||
<test name="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand.ItPassesCommandIfSupported(inputArgs: [\"push\", \"foo.1.0.0.nupkg\", \"--api-key\", \"12345678-1234-1234-1234-123456789012\", \"--source\", ...], result: 0)" type="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" method="ItPassesCommandIfSupported" time="0.0008232" result="Pass" />
|
||||
<test name="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand.ItPassesCommandIfSupported(inputArgs: [\"delete\", \"foo.1.0.0.nupkg\"], result: 0)" type="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" method="ItPassesCommandIfSupported" time="0.0007595" result="Pass" />
|
||||
<test name="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand.ItPassesCommandIfSupported(inputArgs: [\"delete\", \"foo.1.0.0.nupkg\", \"--non-interactive\"], result: 0)" type="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" method="ItPassesCommandIfSupported" time="0.0048949" result="Pass" />
|
||||
<test name="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand.ItPassesCommandIfSupported(inputArgs: [\"delete\", \"foo.1.0.0.nupkg\", \"--api-key\", \"12345678-1234-1234-1234-123456789012\", \"--source\", ...], result: 0)" type="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" method="ItPassesCommandIfSupported" time="0.0007998" result="Pass" />
|
||||
<test name="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand.ItPassesCommandIfSupported(inputArgs: [\"locals\"], result: 0)" type="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" method="ItPassesCommandIfSupported" time="0.0006186" result="Pass" />
|
||||
<test name="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand.ItPassesCommandIfSupported(inputArgs: [\"locals\", \"http-cache\", \"packages-cache\", \"global-packages\", \"temp\"], result: 0)" type="Microsoft.DotNet.Tools.Run.Tests.GivenANuGetCommand" method="ItPassesCommandIfSupported" time="0.0005597" result="Pass" />
|
||||
</collection>
|
||||
</assembly>
|
||||
</assemblies>
|
Loading…
Add table
Reference in a new issue