1 2 3 4 5 6 7 8 9 10 11
|
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-shapely
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import shapely; print(shapely)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-shapely
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import shapely; print(shapely)" ; done
|