test :
	set -e;
	make clean;
	pytest;
	
clean :
	set -e; 	
	if [ -d "scratch" ]; then rm -Rf scratch; fi
	mkdir scratch;
