#!/bin/sh

set -ex

for py in $(py3versions --supported 2>/dev/null); do
    echo "Testing with $py:"
    PYTHON=$py stestr run
    rm -rf .stestr
done
