This repository was archived by the owner on Jun 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +9
-13
lines changed
GitHub.InlineReviews.UnitTests Expand file tree Collapse file tree 6 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,10 @@ install:
1919 nuget restore GitHubVS.sln
2020build_script :
2121- ps : scripts\build.ps1 -AppVeyor -BuildNumber:$env:APPVEYOR_BUILD_NUMBER
22- test_script :
23- - ps : scripts\test.ps1 -AppVeyor
22+ test :
23+ categories :
24+ except :
25+ - Timings
2426on_success :
2527- ps : |
2628 if ($full_build) {
Original file line number Diff line number Diff line change 1818 $TimeoutDuration = 180
1919 ,
2020 [switch ]
21- $AppVeyor = $false
22- ,
23- [switch ]
2421 $Trace = $false
2522
2623)
@@ -35,30 +32,30 @@ $env:PATH = "$PSScriptRoot;$env:PATH"
3532$exitcode = 0
3633
3734Write-Output " Running Tracking Collection Tests..."
38- Run- NUnit test TrackingCollectionTests $TimeoutDuration $config - AppVeyor: $AppVeyor
35+ Run- NUnit test TrackingCollectionTests $TimeoutDuration $config
3936if (! $? ) {
4037 $exitcode = 1
4138}
4239
4340Write-Output " Running GitHub.UI.UnitTests..."
44- Run- NUnit test GitHub.UI.UnitTests $TimeoutDuration $config - AppVeyor: $AppVeyor
41+ Run- NUnit test GitHub.UI.UnitTests $TimeoutDuration $config
4542if (! $? ) {
4643 $exitcode = 2
4744}
4845
4946Write-Output " Running UnitTests..."
50- Run- NUnit test UnitTests $TimeoutDuration $config - AppVeyor: $AppVeyor
47+ Run- NUnit test UnitTests $TimeoutDuration $config
5148if (! $? ) {
5249 $exitcode = 3
5350}
5451
5552Write-Output " Running GitHub.InlineReviews.UnitTests..."
56- Run- NUnit test GitHub.InlineReviews.UnitTests $TimeoutDuration $config - AppVeyor: $AppVeyor
53+ Run- NUnit test GitHub.InlineReviews.UnitTests $TimeoutDuration $config
5754if (! $? ) {
5855 $exitcode = 4
5956}
6057
61- if ($exitcode -ne 0 -and $AppVeyor ) {
58+ if ($exitcode -ne 0 ) {
6259 $host.SetShouldExit ($exitcode )
6360}
6461exit $exitcode
Original file line number Diff line number Diff line change 1010 <package id =" Microsoft.Win32.Primitives" version =" 4.0.1" targetFramework =" net461" />
1111 <package id =" NSubstitute" version =" 2.0.3" targetFramework =" net461" />
1212 <package id =" NUnit" version =" 3.9.0" targetFramework =" net461" />
13- <package id =" NUnit.Extension.AppVeyor.NUnit3ResultWriter" version =" 0.1" />
1413 <package id =" NUnit.Extension.NUnitV2Driver" version =" 3.7.0" targetFramework =" net461" />
1514 <package id =" NUnit.Extension.NUnitV2ResultWriter" version =" 3.6.0" targetFramework =" net461" />
1615 <package id =" NUnit.Runners" version =" 2.6.4" targetFramework =" net452" />
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<packages >
3- <package id =" NUnit.Extension.AppVeyor.NUnit3ResultWriter" version =" 0.1" />
43 <package id =" NUnit" version =" 2.6.4" targetFramework =" net452" />
54 <package id =" NUnit.Extension.NUnitV2Driver" version =" 3.7.0" targetFramework =" net461" />
65 <package id =" NUnit.Extension.NUnitV2ResultWriter" version =" 3.6.0" targetFramework =" net461" />
Original file line number Diff line number Diff line change 2828 <package id =" Rothko" version =" 0.0.3-ghfvs" targetFramework =" net461" />
2929 <package id =" NUnit" version =" 3.9.0" targetFramework =" net461" />
3030 <package id =" NUnit.ConsoleRunner" version =" 3.7.0" targetFramework =" net461" />
31- <package id =" NUnit.Extension.AppVeyor.NUnit3ResultWriter" version =" 0.1" />
3231 <package id =" NUnit.Extension.NUnitProjectLoader" version =" 3.5.0" targetFramework =" net461" />
3332 <package id =" NUnit.Extension.NUnitV2Driver" version =" 3.7.0" targetFramework =" net461" />
3433 <package id =" NUnit.Extension.NUnitV2ResultWriter" version =" 3.6.0" targetFramework =" net461" />
You can’t perform that action at this time.
0 commit comments