You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
echo '----- ulimits -----'
|
|
ulimit -a
|
|
echo '-------------------'
|
|
echo
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
UNIT2="$(which unit2)"
|
|
|
|
coverage erase
|
|
|
|
# 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' \
|
|
"$@"
|
|
}
|
|
|
|
coverage html
|
|
echo coverage report is at "file://$(pwd)/htmlcov/index.html"
|