#!/bin/bash
set -e

tmpdir="$(mktemp -d)"
trap "rm -rf $tmpdir" EXIT

cp -r test "$tmpdir"
cd "$tmpdir"
pytest test
