forked from third-party-mirrors/zfs_autobackup
9 lines
114 B
Bash
Executable File
9 lines
114 B
Bash
Executable File
#!/bin/bash
|
|
coverage run --source bin.zfs_autobackup -m unittest -v $@
|
|
EXIT=$?
|
|
|
|
echo
|
|
coverage report
|
|
|
|
exit $EXIT
|