Control: tags 1080278 + patch Control: tags 1080278 + pending Dear maintainer,
I've prepared an NMU for python-autopage (versioned as 0.4.0-3.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should delay it longer. Regards, -- Colin Watson (he/him) [cjwat...@debian.org]
diff -Nru python-autopage-0.4.0/debian/changelog python-autopage-0.4.0/debian/changelog --- python-autopage-0.4.0/debian/changelog 2021-11-24 21:19:42.000000000 +0000 +++ python-autopage-0.4.0/debian/changelog 2024-09-09 11:14:02.000000000 +0100 @@ -1,3 +1,10 @@ +python-autopage (0.4.0-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * Call unittest directly rather than "setup.py test" (closes: #1080278). + + -- Colin Watson <cjwat...@debian.org> Mon, 09 Sep 2024 11:14:02 +0100 + python-autopage (0.4.0-3) unstable; urgency=medium * Add unit test at build time (Closes: #1000525). diff -Nru python-autopage-0.4.0/debian/rules python-autopage-0.4.0/debian/rules --- python-autopage-0.4.0/debian/rules 2021-11-24 21:19:42.000000000 +0000 +++ python-autopage-0.4.0/debian/rules 2024-09-09 11:10:49.000000000 +0100 @@ -21,7 +21,7 @@ ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) echo "No tests for now..." set -e ; for pyvers in $(PYTHON3S); do \ - python$$pyvers setup.py test ; \ + python$$pyvers -m unittest discover -v ; \ done endif