File: coverage.sh

package info (click to toggle)
mapnik-vector-tile 1.6.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,364 kB
  • sloc: cpp: 19,098; sh: 112; makefile: 82; xml: 58; python: 18
file content (10 lines) | stat: -rwxr-xr-x 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

set -e -u
set -o pipefail

if [[ ${COVERAGE:-false} != false ]]; then
    curl -S -f https://codecov.io/bash -o codecov
    chmod +x codecov
    ./codecov -x "llvm-cov gcov" -Z
fi