#!/bin/sh
set -e
if [ -z "$AUTOPKGTEST_TMP" ]
then
    export ADTTMP=`mktemp -d`
fi
cp -r simplejson/tests $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP
py.test -vs
