1
0
cuberite-2a/uploadCoverage.sh
2014-05-10 14:05:39 +01:00

10 lines
223 B
Bash
Executable File

#!/usr/bin/env bash
if [ "$TRAVIS_MCSERVER_BUILD_TYPE" == "COVERAGE" ]
then
find tests -type f -name '*.gcda' -exec cp {} $(dirname {})/../$(basename {})
coveralls --exclude lib --exclude Android --gcov-options -q
fi