#!/bin/sh
set -u
if [ $# -eq 0 ]
then
	set -x
   eatmydata nose2-3 -C --coverage-report html
else
	set -x
	eatmydata nose2-3 "$@"
fi
