#!/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 and not noroot' -q
