#!/bin/sh
# autopkgtest check: run guacamole unit tests and ensure everything passes
# (C) 2015 Canonical Ltd.
# Author: Zygmunt Krynicki <zygmunt.krynicki@canonical.com> 

set -e

cd $ADTTMP
python -m unittest2 discover guacamole 2>&1
echo "unit-tests: OK"
