You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
557 B
27 lines
557 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
err=0
|
|
|
|
PYTEST_COV_OPTIONS=
|
|
BRITNEY=./britney.py
|
|
|
|
git clone https://salsa.debian.org/debian/britney2-tests.git britney2-tests
|
|
|
|
if [ "x$1" = "x--with-coverage" ]; then
|
|
PYTEST_COV_OPTIONS="--cov-branch --cov --cov-report="
|
|
BRITNEY=./ci/britney-coverage.sh
|
|
fi
|
|
py.test-3 -v $PYTEST_COV_OPTIONS || err=$?
|
|
echo
|
|
britney2-tests/bin/runtests "$BRITNEY" britney2-tests/t test-out || err=$?
|
|
|
|
if [ $err = 0 ] && [ "x$1" = "x--with-coverage" ]; then
|
|
python3-coverage report -m
|
|
echo
|
|
python3-coverage html -d coverage
|
|
fi
|
|
|
|
exit $err
|