reprotest (0.7.21) UNRELEASED; urgency=medium
[ Nick Rosbrook ]
* Dynamically tox environment in debian/rules instead of doing so
statically in tox.ini. LP: #1981624
[ Mattia Rizzolo ]
* Run the tests through pybuild to run them against all supported
python3 versions.
-- Nick Rosbrook <nick.rosbrook@canonical.com> Wed, 13 Jul 2022 14:36:26 -0400
reprotest (0.7.20) unstable; urgency=medium
[ Santiago Ruano Rincón ]
......
Source: reprotest
Maintainer: Reproducible builds folks <reproducible-builds@lists.alioth.debian.org>
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
XSBC-Original-Maintainer: Reproducible builds folks <reproducible-builds@lists.alioth.debian.org>
Uploaders:
Ceridwen <ceridwenv@gmail.com>,
Holger Levsen <holger@debian.org>,
......
......@@ -30,7 +30,7 @@ override_dh_auto_test:
http_proxy=http://127.0.9.1:9 \
https_proxy=https://127.0.9.1:9 \
TOX_TESTENV_PASSENV=PYTHONIOENCODING PYTHONIOENCODING=utf-8 \
tox -r --sitepackages -- -s
dh_auto_test -- --test-tox
# This is meant to be run by autopkgtest, and runs against the *installed*
# version of reprotest. To run it against the development version, give
......
[tox]
# envlist = coverage-clean, py39, coverage-stats
envlist = py39
# skip_missing_interpreters = true
[testenv:coverage-clean]
skip_install = True
commands = {envpython} -m coverage erase
......