coverage.sh 169 B

12345678
  1. #!/bin/sh -eux
  2. cmake -DCOVERAGE=true .
  3. make
  4. make test
  5. pip install --user cpp-coveralls 'requests[security]'
  6. coveralls --exclude third-party --gcov-options '\-lp'; fi