#!/bin/sh
set -e -u

cd "$AUTOPKGTEST_TMP/"

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