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

cp -a test pytest.ini "$ADTTMP"

# SasView insists on writing to ~/sasview.log
export HOME="$ADTTMP"

cd "$ADTTMP"

for py in $(pyversions -i); do
  $py -m pytest -v -s test
done
