#!/bin/bash
set -e
for py in $(py3versions -s)
do echo "Testing with $py in $(pwd):"
    pytest-3 -v
done
