mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-22 15:56:58 +00:00
Capture exit code of nunit to avoid using failed tests as exit code
This commit is contained in:
parent
6fb1aa85d0
commit
4167ffe11a
1 changed files with 8 additions and 0 deletions
8
test.sh
8
test.sh
|
@ -42,3 +42,11 @@ for i in `find $TEST_DIR -name "$TEST_PATTERN"`;
|
||||||
done
|
done
|
||||||
|
|
||||||
$NUNIT_COMMAND --where "$WHERE" $NUNIT_PARAMS $ASSEMBLIES;
|
$NUNIT_COMMAND --where "$WHERE" $NUNIT_PARAMS $ASSEMBLIES;
|
||||||
|
EXIT_CODE=$?
|
||||||
|
|
||||||
|
if [ "$EXIT_CODE" -ge 0 ]; then
|
||||||
|
echo "Failed tests: $EXIT_CODE"
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
exit $EXIT_CODE
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue