Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Drop autopkgtests to test installability & module import.
· b046159b
Bas Couwenberg
authored
Aug 06, 2018
b046159b
Add lintian override for testsuite-autopkgtest-missing.
· 1ad96d04
Bas Couwenberg
authored
Aug 06, 2018
1ad96d04
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
1ad96d04
rasterio (1.0.3-2) UNRELEASED; urgency=medium
* Bump Standards-Version to 4.2.0, no changes.
* Drop autopkgtests to test installability & module import.
* Add lintian override for testsuite-autopkgtest-missing.
-- Bas Couwenberg <sebastic@debian.org> Sun, 05 Aug 2018 20:56:12 +0200
...
...
debian/source/lintian-overrides
0 → 100644
View file @
1ad96d04
# Not worth the effort
testsuite-autopkgtest-missing
debian/tests/control
deleted
100644 → 0
View file @
49d8e1c2
# 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