diff --git a/debian/changelog b/debian/changelog index 87ac03b7..baae6c18 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,8 @@ skimage (0.11.0-1) experimental; urgency=medium * Updated debian/watch to avoid deprecated redirector * debian/{,tests/}control - added python{,3}-networkx to {build-,}depends and Recommends + * debian/tests/python* + - for now exclude testing of test_tools.py due to #779847 in mpl -- Yaroslav Halchenko Thu, 05 Mar 2015 08:32:02 -0500 diff --git a/debian/tests/python2 b/debian/tests/python2 index 554da601..d502a807 100755 --- a/debian/tests/python2 +++ b/debian/tests/python2 @@ -15,5 +15,5 @@ for py in $pys; do cd "$ADTTMP" fi - xvfb-run -a python$py /usr/bin/nosetests -s -v skimage 2>&1 + xvfb-run -a python$py /usr/bin/nosetests -s -v --exclude test_tools.py skimage 2>&1 done diff --git a/debian/tests/python3 b/debian/tests/python3 index d80f0859..2eaa1e78 100755 --- a/debian/tests/python3 +++ b/debian/tests/python3 @@ -15,5 +15,5 @@ for py in $pys; do cd "$ADTTMP" fi - xvfb-run -apython$py /usr/bin/nosetests3 -s -v skimage 2>&1 + xvfb-run -apython$py /usr/bin/nosetests3 -s -v skimage --exclude test_tools.py 2>&1 done