diff --git a/src/.ci/RunTests.sh b/src/.ci/RunTests.sh index eb72f64..77d4589 100644 --- a/src/.ci/RunTests.sh +++ b/src/.ci/RunTests.sh @@ -1,16 +1,15 @@ #!/bin/sh -mono src/.nuget/NuGet.exe install NUnit.Runners -Version 2.6.3 -OutputDirectory src/packages runTest(){ - mono src/packages/NUnit.Runners.2.6.3/tools/nunit-console.exe -noxml -nodots -labels $@ + mono src/packages/NUnit.ConsoleRunner.3.7.0/tools/nunit3-console.exe $@ if [ $? -ne 0 ] then exit 1 fi } -runTest src/log4stash.IntegrationTests/bin/Debug/log4stash.IntegrationTests.dll -exclude=Performance -runTest src/log4stash.UnitTests/bin/Debug/log4stash.UnitTests.dll -exclude=Performance +runTest src/log4stash.IntegrationTests/bin/Debug/log4stash.IntegrationTests.dll +runTest src/log4stash.UnitTests/bin/Debug/log4stash.UnitTests.dll exit $?