#!/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 and not test_perror_style and not test_ansi_pouterr_always_tty and not test_ansi_pouterr_always_notty and not test_ansi_terminal_tty'
done
