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