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