#!/bin/sh
set -efu

pys="$(py3versions -s)"

cp -a tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $pys; do
  echo "=== $py ==="
  $py -m pytest tests -v -k 'not test_build_book and not test_header_repository_buttons and not test_repo_custombranch'
done
