#!/bin/bash
set -e

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

cp -r test "$tmpdir"
cd "$tmpdir"
HOME="$tmpdir" python3 -m nose -v test

