Skip to content
Commits on Source (2)
......@@ -2,7 +2,8 @@ python-osmapi (1.1.0-2) UNRELEASED; urgency=medium
* Update copyright-format URL to use HTTPS.
* Update Vcs-* URLs for Salsa.
* Bump Standards-Version to 4.1.3, no changes.
* Bump Standards-Version to 4.1.4, no changes.
* Add module import tests to autopkgtest configuration.
-- Bas Couwenberg <sebastic@debian.org> Sun, 21 Jan 2018 10:38:34 +0100
......
......@@ -20,7 +20,7 @@ Build-Depends: debhelper (>= 9),
python3-requests,
python-tox,
python-xmltodict
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/python-osmapi
Vcs-Git: https://salsa.debian.org/debian-gis-team/python-osmapi.git
Homepage: https://wiki.openstreetmap.org/wiki/Osmapi
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-osmapi
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import osmapi; print(osmapi)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-osmapi
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import osmapi; print(osmapi)" ; done