Browse Source

Updated the NUnit used in Travis in order to fix a crash in it.

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/829/head
Dimitar Dobrev 8 years ago
parent
commit
5a289d0f00
  1. 2
      build/InstallNugets.sh
  2. 4
      build/RunTests.sh

2
build/InstallNugets.sh

@ -1,3 +1,3 @@ @@ -1,3 +1,3 @@
wget https://nuget.org/nuget.exe
BUILD_DIR=$(dirname -- $0)
mono nuget.exe install NUnit.ConsoleRunner -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps
mono nuget.exe install NUnit.ConsoleRunner -Version 3.6.1 -OutputDirectory $BUILD_DIR/../deps

4
build/RunTests.sh

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
set -e
BUILD_DIR=$(dirname -- $0)
MONO_PATH=$BUILD_DIR/../deps/NUnit.ConsoleRunner.3.6.0/tools \
MONO_PATH=$BUILD_DIR/../deps/NUnit.ConsoleRunner.3.6.1/tools \
cp $BUILD_DIR/../deps/NUnit/nunit.framework.* $BUILD_DIR/gmake/lib/Release_*/
mono $BUILD_DIR/../deps/NUnit.ConsoleRunner.3.6.0/tools/nunit3-console.exe --agents=1 -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll
mono $BUILD_DIR/../deps/NUnit.ConsoleRunner.3.6.1/tools/nunit3-console.exe -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll

Loading…
Cancel
Save