zfs_autobackup/run_tests
Edwin Eefting 9772fc80cf test
2020-05-17 13:28:15 +02:00

13 lines
209 B
Bash
Executable File

#!/bin/bash
#reactivate python environment, if any (usefull in Travis)
source $VIRTUAL_ENV/bin/activate
coverage run --source bin.zfs_autobackup -m unittest -v $@
EXIT=$?
echo
coverage report
exit $EXIT