aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-python/healpy/ChangeLog3
-rw-r--r--dev-python/healpy/healpy-1.6.2.ebuild8
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-python/healpy/ChangeLog b/dev-python/healpy/ChangeLog
index aec23ab26..2aa801e23 100644
--- a/dev-python/healpy/ChangeLog
+++ b/dev-python/healpy/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 17 Sep 2013; Michał Górny <mgorny@gentoo.org> healpy-1.6.2.ebuild:
+ dev-python/healpy: Clean up python_test(). Bug #484426.
+
*healpy-1.6.2 (17 Jun 2013)
17 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> +healpy-1.6.2.ebuild,
diff --git a/dev-python/healpy/healpy-1.6.2.ebuild b/dev-python/healpy/healpy-1.6.2.ebuild
index 485c1b820..c90bd7be4 100644
--- a/dev-python/healpy/healpy-1.6.2.ebuild
+++ b/dev-python/healpy/healpy-1.6.2.ebuild
@@ -27,8 +27,8 @@ DEPEND="${RDEPEND}
virtual/pkgconfig"
python_test() {
- cd "${BUILD_DIR}"/lib*
- echo "backend: Agg" > matplotlibrc
- MPLCONFIGDIR=. PYTHONPATH=. nosetests-"${EPYTHON}" || die
- rm matplotlibrc
+ cd "${BUILD_DIR}"/lib || die
+ echo "backend: Agg" > matplotlibrc || die
+ MPLCONFIGDIR=. nosetests || die
+ rm matplotlibrc || die
}