#!/bin/sh
set -e

cd tests/
for PY in $(py3versions -s)
do
  echo "Testing with $PY"
  $PY -m pytest --verbose -W ignore 2>&1
done
