#!/bin/sh

set -e

for py in $(py3versions -s); do
    echo "[*] testing $py:"
    $py -m pytest "-k not pdf and not test_limits"
done
