#!/bin/sh

set -eu

cp -r tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP/tests"

for python in $(py3versions -s); do
	$python -m pytest -v -k 'not test_chooses_correct_lexer_for_example_files'
done
