#!/bin/sh
set -e
set -u

# nxs is not compatible with MXML 3
export SKIP_NXS_TESTS_MXML=true

cp -r nxs/test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP/test/"

export PYTHONWARNINGS=d

for py in $(py3versions -i); do
  $py -m unittest discover --verbose
done
