Files
ArduinoJson/extras/ci/coverage.sh

10 lines
163 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]'
pwd
coveralls --include 'src' --gcov-options '\-lp'