#!/bin/bash
set -e

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

cp -r test "$tmpdir"
cd "$tmpdir"
python3 -m nose -v -e code_format test
