From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B2BC2158088 for ; Mon, 31 Jan 2022 00:26:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 337532BC00D; Mon, 31 Jan 2022 00:26:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 16F312BC012 for ; Mon, 31 Jan 2022 00:26:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 28F1B342BCC for ; Mon, 31 Jan 2022 00:26:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A913B2CC for ; Mon, 31 Jan 2022 00:26:25 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1643588636.7724e813891c1f98dfa6df04bd546ec78c1f9dc5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pandas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pandas/pandas-1.4.0.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7724e813891c1f98dfa6df04bd546ec78c1f9dc5 X-VCS-Branch: master Date: Mon, 31 Jan 2022 00:26:25 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f9c0b407-61f0-4501-89c7-a74273ead3e2 X-Archives-Hash: 6c5288634f81bb9ea5d3efa49b717d0f commit: 7724e813891c1f98dfa6df04bd546ec78c1f9dc5 Author: Michał Górny gentoo org> AuthorDate: Sun Jan 30 12:11:33 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jan 31 00:23:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7724e813 dev-python/pandas: Run a single Xvfb Signed-off-by: Michał Górny gentoo.org> dev-python/pandas/pandas-1.4.0.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-python/pandas/pandas-1.4.0.ebuild b/dev-python/pandas/pandas-1.4.0.ebuild index 922f3eec3723..a29bcb00cd44 100644 --- a/dev-python/pandas/pandas-1.4.0.ebuild +++ b/dev-python/pandas/pandas-1.4.0.ebuild @@ -140,6 +140,10 @@ python_compile_all() { fi } +src_test() { + virtx distutils-r1_src_test +} + python_test() { local EPYTEST_DESELECT=( # test for rounding errors, fails if we have better precision @@ -155,8 +159,9 @@ python_test() { local -x LC_ALL=C.UTF-8 cd "${BUILD_DIR}/install$(python_get_sitedir)" || die "${EPYTHON}" -c "import pandas; pandas.show_versions()" || die - virtx epytest pandas --skip-slow --skip-network -m "not single" \ - -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" + epytest pandas --skip-slow --skip-network -m "not single" \ + -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" || + die "Tests failed with ${EPYTHON}" } python_install_all() {