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.
21 lines
416 B
Plaintext
21 lines
416 B
Plaintext
#/usr/bin/env bash
|
|
|
|
echo '----- ulimits -----'
|
|
ulimit -a
|
|
echo '-------------------'
|
|
echo
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
UNIT2="$(which unit2)"
|
|
|
|
coverage erase
|
|
coverage run "${UNIT2}" discover \
|
|
--start-directory "tests" \
|
|
--pattern '*_test.py' \
|
|
"$@"
|
|
coverage html
|
|
echo coverage report is at "file://$(pwd)/htmlcov/index.html"
|