blob: 08f0e482d3df333ded9fc7b7eb34c69d67d84fbe (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# We only submit coverage from the Linux build.
coveralls \
--exclude auto_tests \
--exclude other \
--exclude testing \
--gcov-options '\-lp'
bash <(curl -s https://codecov.io/bash)
|