#!/bin/sh
set -e -u

cd "$AUTOPKGTEST_TMP/"

export PYTHONWARNINGS=d
for py in $(py3versions -s); do
  $py -m pytest -rxs -v --pyargs diff_match_patch.tests.diff_match_patch_test 2>&1
done
