Context: https://github.com/nunit/nunit/releases/tag/3.7.1
Context: commit 6687dac5

The release notes for NUnit 3.7.1 mention a hang with parallelized
tests, so it is worth a try to see if updating fixes it the hangs
that we experienced and tried to workaround in 6687dac.
This commit is contained in:
Jonathan Peppers 2017-10-25 21:01:50 -05:00 коммит произвёл Jonathan Pryor
Родитель 1645e7bcb9
Коммит 5c750430d7
3 изменённых файлов: 4 добавлений и 6 удалений

Просмотреть файл

@ -12,8 +12,6 @@ NUNIT_TESTS = \
NUNIT_CONSOLE = packages/NUnit.ConsoleRunner.3.7.0/tools/nunit3-console.exe
NUNIT_WORKERS ?= --workers=1
ifneq ($(V),0)
MONO_OPTIONS += --debug
endif
@ -140,7 +138,7 @@ define RUN_NUNIT_TEST
MONO_TRACE_LISTENER=Console.Out \
USE_MSBUILD=$(if $(USE_MSBUILD),$(USE_MSBUILD),0) \
$(RUNTIME) --runtime=v4.0.0 \
$(NUNIT_CONSOLE) $(NUNIT_EXTRA) $(NUNIT_WORKERS) $(1) \
$(NUNIT_CONSOLE) $(NUNIT_EXTRA) $(1) \
$(if $(TEST),--test=$(TEST)) \
--result="TestResult-$(basename $(notdir $(1))).xml;format=nunit2" \
-output=bin/Test$(CONFIGURATION)/TestOutput-$(basename $(notdir $(1))).txt \

Просмотреть файл

@ -36,7 +36,7 @@
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="nunit.framework">
<HintPath>..\..\..\..\packages\NUnit.3.7.0\lib\net45\nunit.framework.dll</HintPath>
<HintPath>..\..\..\..\packages\NUnit.3.7.1\lib\net45\nunit.framework.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="3.7.0" targetFramework="net451" />
<package id="NUnit" version="3.7.1" targetFramework="net451" />
<package id="NUnit.Console" version="3.7.0" targetFramework="net451" />
<package id="NUnit.ConsoleRunner" version="3.7.0" targetFramework="net451" />
<package id="NUnit.Extension.NUnitProjectLoader" version="3.6.0" targetFramework="net451" />
@ -9,4 +9,4 @@
<package id="NUnit.Extension.TeamCityEventListener" version="1.0.2" targetFramework="net451" />
<package id="NUnit.Extension.VSProjectLoader" version="3.6.0" targetFramework="net451" />
<package id="Unofficial.Ionic.Zip" version="1.9.1.8" targetFramework="net45" />
</packages>
</packages>