#!/bin/sh -e

pkg=khmer
if [ "$AUTOPKGTEST_TMP" = "" ] ; then
	AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
fi
cd "$AUTOPKGTEST_TMP"
PATH=/usr/lib/khmer/bin/:$PATH python3 -m pytest --pyargs khmer \
	-m 'not known_failing and not huge and not noroot' -q
