From 7664bb3a188eb9649fb50b8fb5a274ddd9cfa8f8 Mon Sep 17 00:00:00 2001 From: Dimitar Dobrev Date: Sat, 18 Feb 2017 14:46:59 +0200 Subject: [PATCH] Removed needless copying of NUnit libraries. Signed-off-by: Dimitar Dobrev --- build/InstallNugets.sh | 5 +---- build/RunTests.sh | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/build/InstallNugets.sh b/build/InstallNugets.sh index a7b7ece68a..3dbe2337e6 100755 --- a/build/InstallNugets.sh +++ b/build/InstallNugets.sh @@ -1,6 +1,3 @@ wget https://nuget.org/nuget.exe BUILD_DIR=$(dirname -- $0) -mono nuget.exe install NUnit -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps -mono nuget.exe install NUnit.Runners -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps -ls -d $BUILD_DIR/../deps/*/ -cp $BUILD_DIR/../deps/NUnit/lib/net45/nunit.framework.* $BUILD_DIR/../deps/NUnit +mono nuget.exe install NUnit.ConsoleRunner -Version 3.6.0 -OutputDirectory $BUILD_DIR/../deps \ No newline at end of file diff --git a/build/RunTests.sh b/build/RunTests.sh index 212dc6a290..9590e25037 100755 --- a/build/RunTests.sh +++ b/build/RunTests.sh @@ -1,4 +1,4 @@ set -e BUILD_DIR=$(dirname -- $0) -MONO_PATH=$BUILD_DIR/../deps/NUnit.Runners.2.6.4/tools \ -mono $BUILD_DIR/../deps/NUnit.Runners.2.6.4/tools/nunit-console.exe -nologo -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll +MONO_PATH=$BUILD_DIR/../deps/NUnit.Runners.3.6.0/tools \ +mono $BUILD_DIR/../deps/NUnit.Runners.3.6.0/tools/nunit-console.exe -nologo -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll