Package: toolz Version: 0.8.2-2 Severity: normal Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu artful ubuntu-patch
Hi Diane, As a follow-on to bug #867242, the toolz autopkgtests are still failing in Ubuntu because pyversions -r now returns python3.6 in addition to python3.5: autopkgtest [18:27:05]: test command1: [----------------------- Testing with python3.6: bash: python3.6: command not found autopkgtest [18:27:05]: test command1: -----------------------] https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-artful/artful/amd64/t/toolz/20170706_182717_02c7b@/log.gz (This error would also be visible at ci.debian.net now that the python3.6 transition has started in Debian, but the most recent attempt to test toolz failed for some reason.) I've uploaded the attached one-liner patch to Ubuntu, which should fix the issue. -- Steve Langasek Give me a lever long enough and a Free OS Debian Developer to set it on, and I can move the world. Ubuntu Developer http://www.debian.org/ slanga...@ubuntu.com vor...@debian.org
diff -Nru toolz-0.8.2/debian/tests/control toolz-0.8.2/debian/tests/control --- toolz-0.8.2/debian/tests/control 2016-12-21 20:52:27.000000000 -0800 +++ toolz-0.8.2/debian/tests/control 2017-07-06 22:41:51.000000000 -0700 @@ -1,2 +1,2 @@ Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -m pytest --pyargs toolz ; done -Depends: @, python3-pytest +Depends: @, python3-pytest, python3-all