#!/bin/sh
set -e
for i in $(py3versions -s 2>/dev/null) ; do
	PYTHONPATH=. $i -m pytest -k 'not test_version and not test_path_completion_complete_user and not test_transcript and not test_find_editor_not_specified and not test_run_script_with_binary_file and not test_utils.py and not test_perror_style'
done
