#!/bin/bash

set -e

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

