#!/bin/bash
set -e

for py in $(py3versions --supported 2> /dev/null)
do
    pushd tests
    echo "Testing with $py in $(pwd):"
    http_proxy="" $py -m pytest -v
    popd
done
