mirror of
https://github.com/mapbox/node-fontnik.git
synced 2026-01-18 15:54:55 +00:00
* exclude mason_packages from coverage reporting - refs #117 * simplify nvm usage * nest sudo:false * gah nvm * need to source 'install_node'
11 lines
282 B
Bash
Executable File
11 lines
282 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
npm test
|
|
|
|
if [[ ${COVERAGE} == true ]]; then
|
|
${PYTHONUSERBASE}/bin/cpp-coveralls --exclude node_modules --exclude mason_packages --exclude tests --build-root build --gcov-options '\-lp' --exclude doc --exclude build/Debug/obj/gen
|
|
fi
|