Skip to content
Commits on Source (2)
pyorbital (1.5.0-4) unstable; urgency=medium
* Remove python2 from debian/tests
-- Antonio Valentino <antonio.valentino@tiscali.it> Wed, 24 Jul 2019 05:27:41 +0000
pyorbital (1.5.0-3) unstable; urgency=medium
[ Antonio Valentino ]
......
Tests: python2
Depends: python-pyorbital, python-all
Tests: python3
Depends: python3-pyorbital, python3-all
#!/bin/sh
set -efu
PYS=${PYS:-"$(pyversions -r 2>/dev/null)"}
TESTPKG=${TESTPKG:-pyorbital}
cd "$ADTTMP"
for py in $PYS; do
echo "=== $py ==="
$py -m unittest -v pyorbital.tests.suite 2>&1
done