Skip to content

Commit

Permalink
Modify travis to send coverage as soon.
Browse files Browse the repository at this point in the history
  • Loading branch information
FragJage committed Jan 19, 2019
1 parent 0aa97d8 commit e0d6432
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ install:
- sudo /etc/init.d/owserver start

script:
cmake . -G"Unix Makefiles" -DCMAKE_CXX_COMPILER=$(which $COMPILER);
make;
valgrind --error-exitcode=0 --leak-check=full ./test/bin/unittest;
./test/bin/unittest;
- cmake . -G"Unix Makefiles" -DCMAKE_CXX_COMPILER=$(which $COMPILER)
- make
- coveralls --include src --gcov-options '\-lp' --gcov 'gcov-4.9'

after_success:
coveralls --include src --gcov-options '\-lp' --gcov 'gcov-4.9';
- ./test/bin/unittest
- valgrind --error-exitcode=0 --leak-check=full ./test/bin/unittest

0 comments on commit e0d6432

Please sign in to comment.