1
0
Fork 0

Don't start mcserver up in coverage builds

Starting the server up is not a test.
This commit is contained in:
worktycho 2014-05-17 13:04:40 +01:00
parent 97dc7d8f66
commit 8bb8c2ca7d
1 changed files with 3 additions and 1 deletions

View File

@ -6,4 +6,6 @@ cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1;
make -j 2;
make -j 2 test;
cd MCServer/;
echo stop | $MCSERVER_PATH;
if [ "$TRAVIS_MCSERVER_BUILD_TYPE" != "COVERAGE" ]
then echo stop | $MCSERVER_PATH;
fi