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 12D8113933E for ; Thu, 1 Jul 2021 14:42:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50B42E08F1; Thu, 1 Jul 2021 14:42:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 38978E08F1 for ; Thu, 1 Jul 2021 14:42:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 06A24335D02 for ; Thu, 1 Jul 2021 14:42:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8378A7C4 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: <1625150495.8cfc4c47295fa69d977f69228c51acd6909f1ba2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_client/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jupyter_client/jupyter_client-6.1.12.ebuild X-VCS-Directories: dev-python/jupyter_client/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8cfc4c47295fa69d977f69228c51acd6909f1ba2 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: 22886260-12ec-4f9e-9058-b636dd1fb690 X-Archives-Hash: 522ed4686d44fad1ed39087de5dae8e4 commit: 8cfc4c47295fa69d977f69228c51acd6909f1ba2 Author: Michał Górny gentoo org> AuthorDate: Thu Jul 1 14:18:30 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jul 1 14:41:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cfc4c47 dev-python/jupyter_client: Skip more failing tests Signed-off-by: Michał Górny gentoo.org> dev-python/jupyter_client/jupyter_client-6.1.12.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-python/jupyter_client/jupyter_client-6.1.12.ebuild b/dev-python/jupyter_client/jupyter_client-6.1.12.ebuild index 8743d8a2275..471acf5b007 100644 --- a/dev-python/jupyter_client/jupyter_client-6.1.12.ebuild +++ b/dev-python/jupyter_client/jupyter_client-6.1.12.ebuild @@ -33,3 +33,11 @@ BDEPEND=" )" distutils_enable_tests pytest + +python_test() { + local deselect=( + jupyter_client/tests/test_kernelmanager.py::TestAsyncKernelManager::test_signal_kernel_subprocesses + jupyter_client/tests/test_kernelmanager.py::TestAsyncKernelManager::test_start_new_async_kernel + ) + epytest ${deselect[@]/#/--deselect } +}