Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Add module import tests to autopkgtest configuration.
· c8fa8e2c
Bas Couwenberg
authored
Apr 17, 2018
c8fa8e2c
Bump Standards-Version to 4.1.4, no changes.
· 2ecac889
Bas Couwenberg
authored
Apr 17, 2018
2ecac889
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
2ecac889
...
...
@@ -2,10 +2,11 @@ rasterio (0.36.0-3) UNRELEASED; urgency=medium
* Team upload.
* Update watchfile to also match pre-releases.
* Bump Standards-Version to 4.1.
3
, no changes.
* Bump Standards-Version to 4.1.
4
, no changes.
* Strip trailing whitespace from control & rules files.
* Update copyright-format URL to use HTTPS.
* Update Vcs-* URLs for Salsa.
* Add module import tests to autopkgtest configuration.
-- Bas Couwenberg <sebastic@debian.org> Tue, 29 Aug 2017 23:20:11 +0200
...
...
debian/control
View file @
2ecac889
...
...
@@ -30,7 +30,7 @@ Build-Depends: debhelper (>= 9),
python3-pytest,
python3-cligj (>= 0.2),
python3-click-plugins,
Standards-Version: 4.1.
3
Standards-Version: 4.1.
4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/rasterio
Vcs-Git: https://salsa.debian.org/debian-gis-team/rasterio.git
Homepage: https://github.com/mapbox/rasterio
...
...
debian/tests/control
View file @
2ecac889
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-rasterio
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import rasterio; import rasterio.rio; import rasterio.tools; print(rasterio); print(rasterio.rio); print(rasterio.tools)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-rasterio
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import rasterio; import rasterio.rio; import rasterio.tools; print(rasterio); print(rasterio.rio); print(rasterio.tools)" ; done