2018-11-06 13:47:09 +00:00
|
|
|
#!/usr/bin/env bash
|
2018-07-04 17:38:34 +00:00
|
|
|
|
|
|
|
echo '----- ulimits -----'
|
|
|
|
ulimit -a
|
|
|
|
echo '-------------------'
|
|
|
|
echo
|
|
|
|
|
2018-04-01 01:11:37 +00:00
|
|
|
set -o errexit
|
|
|
|
set -o pipefail
|
2018-04-01 00:42:31 +00:00
|
|
|
|
|
|
|
UNIT2="$(which unit2)"
|
|
|
|
|
|
|
|
coverage erase
|
2018-10-02 19:42:24 +00:00
|
|
|
|
|
|
|
# First run overwites coverage output.
|
|
|
|
[ "$SKIP_MITOGEN" ] || {
|
|
|
|
coverage run "${UNIT2}" discover \
|
|
|
|
--start-directory "tests" \
|
|
|
|
--pattern '*_test.py' \
|
|
|
|
"$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Second run appends. This is since 'discover' treats subdirs as packages and
|
|
|
|
# the 'ansible' subdir shadows the real Ansible package when it contains
|
|
|
|
# __init__.py, so hack around it by just running again with 'ansible' as the
|
|
|
|
# start directory. Alternative seems to be renaming tests/ansible/ and making a
|
|
|
|
# mess of Git history.
|
|
|
|
[ "$SKIP_ANSIBLE" ] || {
|
|
|
|
export PYTHONPATH=`pwd`/tests:$PYTHONPATH
|
|
|
|
coverage run -a "${UNIT2}" discover \
|
|
|
|
--start-directory "tests/ansible" \
|
|
|
|
--pattern '*_test.py' \
|
|
|
|
"$@"
|
|
|
|
}
|
|
|
|
|
2018-04-01 00:42:31 +00:00
|
|
|
coverage html
|
|
|
|
echo coverage report is at "file://$(pwd)/htmlcov/index.html"
|