#!/bin/sh
set -e -u
export PYTHONWARNINGS=d

cp pytest.ini "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
  $py -m pytest -v -p no:cacheprovider --pyargs bumps
done
