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


# We just copy the entire test suite to the $ADTTMP directory (because of the
# .pyc files) and run the tests from within there.
cp -r tests testdata "$ADTTMP"
cd "$ADTTMP"/tests/keyczar_tests
python alltests.py
