Browse Source

[tests] Pass --agents=1 to NUnit console test runner to fix intermittent errors.

See https://github.com/nunit/nunit-console/pull/183.

Remove this workaround once we update NUnit consoler runner version.
pull/829/head
Joao Matos 8 years ago
parent
commit
b6f400dbfa
  1. 2
      build/RunTests.sh

2
build/RunTests.sh

@ -2,4 +2,4 @@ set -e @@ -2,4 +2,4 @@ set -e
BUILD_DIR=$(dirname -- $0)
MONO_PATH=$BUILD_DIR/../deps/NUnit.ConsoleRunner.3.6.0/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 -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll
mono $BUILD_DIR/../deps/NUnit.ConsoleRunner.3.6.0/tools/nunit3-console.exe --agents=1 -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll

Loading…
Cancel
Save