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

# We just copy the entire test suite to the $ADTTMP directory and run the
# tests from within there.
mkdir "$ADTTMP"/python3
cp -r tests "$ADTTMP"/python3
cd "$ADTTMP"/python3
python3 -m unittest discover -v
