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

cp -a test pytest.ini "$AUTOPKGTEST_TMP"

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

cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
  $py -m pytest -v -s -k "not test_debye_impl" test
done
