#!/bin/sh
set -e
# Enter testing directory so that we don't accidentally find 'py' directory but
# instead use the system py module.
cd testing

TMPDIR="$ADDTMP" LANG=C.UTF-8 pypy -m pytest . || true
