#!/bin/sh -e

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