#!/bin/bash
set -e
for python in $(py3versions -s); do
    $python -P -m pytest -svv tests
done
