Files
ArduinoJson/scripts/travis/coverage.sh

9 lines
169 B
Bash
Raw Normal View History

#!/bin/sh -eux
2019-02-28 17:26:29 +01:00
cmake -DCOVERAGE=true .
make
make test
pip install --user cpp-coveralls 'requests[security]'
coveralls --exclude third-party --gcov-options '\-lp'; fi