diff options
-rwxr-xr-x | test/testing.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/testing.sh b/test/testing.sh index d24f236e..208f948b 100755 --- a/test/testing.sh +++ b/test/testing.sh | |||
@@ -531,9 +531,8 @@ $testing_sys_tree/bin/luacov -c $testing_dir/luacov.config src/luarocks src/bin | |||
531 | if [ "$travis" ] | 531 | if [ "$travis" ] |
532 | then | 532 | then |
533 | build_environment luacov luacov-coveralls | 533 | build_environment luacov luacov-coveralls |
534 | ( cd $testing_dir; $testing_sys_tree/bin/luacov-coveralls ) | 534 | ( cd $testing_dir; $testing_sys_tree/bin/luacov-coveralls || exit 0 ) |
535 | grep "Summary" -B1 -A1000 $testing_dir/luacov.report.out | 535 | grep "Summary" -B1 -A1000 $testing_dir/luacov.report.out |
536 | else | 536 | else |
537 | cat "$testing_dir/luacov.report.out" | 537 | cat "$testing_dir/luacov.report.out" |
538 | fi | 538 | fi |
539 | |||