#!/bin/sh
set -e
for py in $(py3versions -i); do echo "[*] testing $py:"; $py -Wd run_tests.py; done
