#!/bin/sh
# Runs the upstream pytest suite against the installed package, using
# the source tree's tests/ directory (autopkgtest provides it alongside
# debian/tests/ when the package is built with "Testsuite: autopkgtest").
set -e
cd "$(dirname "$0")/../.."
python3 -m pytest tests/ -v
