#!/bin/sh
set -efu

PYS=${PYS:-"$(py3versions -s 2>/dev/null)"}


for py in $PYS; do
    echo "=== $py ==="
    $py -m pytest --pyargs -v -m "not network and not natural_earth" cartopy
done
