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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7FBE513933E for ; Thu, 1 Jul 2021 14:42:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2419E08E5; Thu, 1 Jul 2021 14:42:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 93B94E087F for ; Thu, 1 Jul 2021 14:42:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C4886335DC6 for ; Thu, 1 Jul 2021 14:42:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B5F77C2 for ; Thu, 1 Jul 2021 14:42:00 +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: <1625150493.391f3599a352814f73d71d75a21d236d2ba6ba98.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipyparallel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild X-VCS-Directories: dev-python/ipyparallel/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 391f3599a352814f73d71d75a21d236d2ba6ba98 X-VCS-Branch: master Date: Thu, 1 Jul 2021 14:42:00 +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: 67d248e3-0514-499b-a549-8b570c0ed2d2 X-Archives-Hash: 376975556499466344de93a2052b363f commit: 391f3599a352814f73d71d75a21d236d2ba6ba98 Author: Michał Górny gentoo org> AuthorDate: Thu Jul 1 13:53:51 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jul 1 14:41:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=391f3599 dev-python/ipyparallel: Skip more failing tests Signed-off-by: Michał Górny gentoo.org> dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild b/dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild index e630c3d4802..0bef8279f49 100644 --- a/dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild +++ b/dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild @@ -48,13 +48,19 @@ BDEPEND="${RDEPEND} distutils_enable_sphinx docs/source distutils_enable_tests pytest -src_prepare() { - # TODO: investigate - sed -e 's:test_unicode:_&:' \ - -e 's:test_temp_flags:_&:' \ - -i ipyparallel/tests/test_view.py || die - - distutils-r1_src_prepare +python_test() { + local deselect=( + # we don't run a mongo instance for tests + ipyparallel/tests/test_mongodb.py::TestMongoBackend + # TODO + ipyparallel/tests/test_util.py::test_disambiguate_ip + ipyparallel/tests/test_view.py::TestView::test_temp_flags + ipyparallel/tests/test_view.py::TestView::test_unicode_apply_arg + ipyparallel/tests/test_view.py::TestView::test_unicode_apply_result + ipyparallel/tests/test_view.py::TestView::test_unicode_execute + ipyparallel/tests/test_view.py::TestView::test_sync_imports_quiet + ) + epytest ${deselect[@]/#/--deselect } } pkg_postinst() {