forked from third-party-mirrors/zfs_autobackup
13 lines
209 B
Bash
Executable File
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
|