#!/bin/sh
set -efu

PYS=${PYS:-"$(pyversions -r 2>/dev/null)"}

cd $AUTOPKGTEST_TMP

for py in $PYS; do
    echo "=== $py ==="
    $py -m pytest --pyargs cartopy.tests.crs cartopy.tests.test_crs cartopy.tests.test_geodesic
done
