From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 22AA758974 for ; Mon, 25 Jan 2016 19:45:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36DC121C016; Mon, 25 Jan 2016 19:45:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FF3621C016 for ; Mon, 25 Jan 2016 19:45:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB34A3404A5 for ; Mon, 25 Jan 2016 19:45:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A30A4102F for ; Mon, 25 Jan 2016 19:45:15 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1453751112.af0c5b6d140c1c175f2e87dc27d8cd047ddc8d29.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/seaborn/seaborn-0.7.0.ebuild X-VCS-Directories: dev-python/seaborn/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: af0c5b6d140c1c175f2e87dc27d8cd047ddc8d29 X-VCS-Branch: master Date: Mon, 25 Jan 2016 19:45:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 891c76b2-3425-4ee7-aaac-468466fd0326 X-Archives-Hash: 969109eb0dfa82f8406a80a7407fa453 commit: af0c5b6d140c1c175f2e87dc27d8cd047ddc8d29 Author: Justin Lecher gentoo org> AuthorDate: Mon Jan 25 16:34:37 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Jan 25 19:45:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af0c5b6d dev-python/seaborn: Set mpl backend to Agg for tests Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> dev-python/seaborn/seaborn-0.7.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/seaborn/seaborn-0.7.0.ebuild b/dev-python/seaborn/seaborn-0.7.0.ebuild index dc414e3..88c448f 100644 --- a/dev-python/seaborn/seaborn-0.7.0.ebuild +++ b/dev-python/seaborn/seaborn-0.7.0.ebuild @@ -31,9 +31,9 @@ DEPEND="${RDEPEND} ) " -# https://github.com/mwaskom/seaborn/issues/836 -RESTRICT=test - python_test() { + cat > matplotlibrc <<- EOF + backend : Agg + EOF virtx nosetests --verbosity=3 }