#!/bin/bash
#
# NOTE: This is expected to be run against a production install, not
# a development system.  Do not run this against a cluster with data
# you care about!
#

export CALAMARI_CONFIG=/etc/calamari/calamari.conf

DIR=$(dirname $0)
cd $DIR

if [ ! -s tests/test.conf ]; then
	echo "$DIR/tests/test.conf not found -- see $DIR/README for usage"
	exit 1
fi

nosetests --verbosity=2 tests

