#!/bin/sh
set -e
cp -r tests ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
$p -m pytest --ignore tests/test_action_helper.py -k "not test_create_reuse_stale_virtualenv_environment and not test_create_reuse_venv_environment and not test_create_venv_backend and not test_noxfile_script_mode_url_req and not test_commands_with_requirements and not test_download_python_auto_missing_interpreter and not test_download_python_always_preexisting_interpreter and not test_download_python_failed_install" tests
done
|