1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Minor fix. Coverage uses bourne shell, not bash

This commit is contained in:
Pavan Chandrashekar
2020-03-10 12:41:16 -07:00
parent c8f93ea010
commit 4432d49591

View File

@ -27,10 +27,9 @@ export DYN_USERNAME=
export GOOGLE_APPLICATION_CREDENTIALS=
OMIT_PATHS=("octodns/cmds/*"
"octodns/provider/transip*.py") # FIXME Transip tests are failing. Omitting them until they are fixed
OMIT_PATHS="octodns/cmds/*,octodns/provider/transip*.py" # FIXME Transip tests are failing. Omitting them until they are fixed
coverage run --branch --source=octodns --omit=$(echo ${OMIT_PATHS[@]} | tr ' ' ',') "$(command -v nosetests)" --with-xunit "$@"
coverage run --branch --source=octodns --omit=${OMIT_PATHS} "$(command -v nosetests)" --with-xunit "$@"
coverage html
coverage xml
coverage report --show-missing