X Tutup
Skip to content

Commit 4537e23

Browse files
committed
Upgrade NUnit to 3.6
1 parent 58bc902 commit 4537e23

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ci/appveyor_run_tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Executable paths for OpenCover
44
# Note if OpenCover fails, it won't affect the exit codes.
55
$OPENCOVER = Resolve-Path .\packages\OpenCover.*\tools\OpenCover.Console.exe
6-
$NUNIT = Resolve-Path .\packages\NUnit.Runners*\tools\"$env:NUNIT".exe
6+
$NUNIT = Resolve-Path .\packages\NUnit.ConsoleRunner*\tools\nunit3-console.exe
77
$PY = Get-Command python
88

99
# Can't use ".\build\*\Python.EmbeddingTest.dll". Missing framework files.

src/embed_tests/Python.EmbeddingTest.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
<DebugType>pdbonly</DebugType>
6666
</PropertyGroup>
6767
<ItemGroup>
68-
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
69-
<HintPath>..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
68+
<Reference Include="nunit.framework, Version=3.6.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
69+
<HintPath>..\..\packages\NUnit.3.6.0\lib\net40\nunit.framework.dll</HintPath>
7070
</Reference>
7171
<Reference Include="System" />
7272
</ItemGroup>

src/embed_tests/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="2.6.4" targetFramework="net40" />
4-
<package id="NUnit.Runners" version="2.6.4" targetFramework="net40" />
3+
<package id="NUnit" version="3.6.0" targetFramework="net40" />
4+
<package id="NUnit.ConsoleRunner" version="3.6.0" targetFramework="net40" />
55
</packages>

0 commit comments

Comments
 (0)
X Tutup