#!/bin/sh

set -e -u

export PYTHONWARNINGS=d
export MPLBACKEND=agg

cp -a pytest.ini "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
  xvfb-run -a pytest -v -ra --pyargs refnx
done
