#!/bin/sh
# Run python-keyczar unit tests using the default Python version. Assumes
# $AUTOPKGTEST_TMP is set, see /usr/share/doc/autopkgtest/README.package-tests.rst.gz
set -e


# We just copy the entire test suite to the $AUTOPKGTEST_TMP directory and run the
# tests from within there.
cp -r tests testdata "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"/tests/keyczar_tests
python alltests.py
