#!/bin/sh
set -efu

pythons="$(pyversions -rv)"
cp -a c testing "$ADTTMP"

# Not appropriate:
rm "$ADTTMP"/testing/test_version.py

cd "$ADTTMP"
for py in $pythons; do
	py.test-$py c testing
	python$py-dbg /usr/bin/py.test c testing 2>&1
done
