/usr/share/doc/khmer-common/run-unit-test is in khmer-common 2.1.2+dfsg-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | #!/bin/sh -e
pkg=khmer
if [ "$ADTTMP" = "" ] ; then
ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX`
fi
cd $ADTTMP
PATH=/usr/lib/khmer/bin/:$PATH python3 -m pytest --pyarg khmer \
-m 'not known_failing and not huge'
|