mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-12 17:45:49 +00:00
10 lines
163 B
Bash
10 lines
163 B
Bash
#!/bin/sh -eux
|
|
|
|
cmake -DCOVERAGE=true .
|
|
make
|
|
make test
|
|
|
|
pip install --user cpp-coveralls 'requests[security]'
|
|
pwd
|
|
coveralls --include 'src' --gcov-options '\-lp'
|