From 6f42e64d8caa303e71a0e1512e2fad1848736094 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko <debian@onerussian.com> Date: Tue, 11 May 2010 00:01:03 -0400 Subject: [PATCH] Disabling test_gmm_em unittests while building (Closes: #580879). Actual reason for failing tests lies within NumPy -- see #581043, which should be fixed there, but should not prevent building of this package atm. --- debian/changelog | 9 +++++++++ debian/rules | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index bd61797a4d..da2e6ef718 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +scikit-learn (0.3-4) unstable; urgency=low + + * Disabling test_gmm_em unittests while building (Closes: #580879). + Actual reason for failing tests lies within NumPy -- see #581043, + which should be fixed there, but should not prevent building of + this package atm. + + -- Yaroslav Halchenko <debian@onerussian.com> Mon, 10 May 2010 23:59:49 -0400 + scikit-learn (0.3-3) unstable; urgency=low * Set HOME and MPLCONFIGDIR while unittesting as well (Closes: #580727) diff --git a/debian/rules b/debian/rules index 8c585626a9..03b53bf572 100755 --- a/debian/rules +++ b/debian/rules @@ -38,7 +38,7 @@ python-install%: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) : # Run unittests export MPLCONFIGDIR=$(CURDIR)/build HOME=$(CURDIR)/build; \ - python$* /usr/bin/nosetests --exclude manifold \ + python$* /usr/bin/nosetests --exclude '(manifold|test_gmm_em)' \ $(PACKAGE_ROOT_DIR)/usr/lib/python$*/*/scikits/learn else : # Skip unittests due to nocheck -- GitLab