#!/bin/sh

set -e

cp -r test.py ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest -k "not test_default_command_with_arguments" test.py
done
