#!/bin/bash
set -e

PYTEST_EXCLUDE=$(make -s -f debian/rules print-PYTEST_EXCLUDE)
for python in $(py3versions -s); do
    $python -P -m pytest -k "not ($PYTEST_EXCLUDE)" tests
done
