#!/bin/sh -e

pkg=packagename
if [ "$ADTTMP" = "" ] ; then
	ADTTMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
fi
cd "$ADTTMP"
py.test3 --ignore cwltool/schemas --pyarg cwltool
