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 499911382C5 for ; Mon, 22 Mar 2021 23:53:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E972E084E; Mon, 22 Mar 2021 23:53:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 4A238E084E for ; Mon, 22 Mar 2021 23:53:24 +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 A47693406C0 for ; Mon, 22 Mar 2021 23:53:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFBEA46C for ; Mon, 22 Mar 2021 23:53:20 +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: <1616457195.b0abaec4ce370bed8d71efb5982534aba8c74878.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/notebook/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/notebook/notebook-6.3.0.ebuild X-VCS-Directories: dev-python/notebook/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b0abaec4ce370bed8d71efb5982534aba8c74878 X-VCS-Branch: master Date: Mon, 22 Mar 2021 23:53:20 +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: ffd0b68e-3894-45da-98eb-b051bf0882d8 X-Archives-Hash: c3371f3f4526d98d4be9bc3723a42fa1 commit: b0abaec4ce370bed8d71efb5982534aba8c74878 Author: Michał Górny gentoo org> AuthorDate: Mon Mar 22 23:10:25 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 22 23:53:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0abaec4 dev-python/notebook: Disable selenium tests harder Closes: https://bugs.gentoo.org/777795 Signed-off-by: Michał Górny gentoo.org> dev-python/notebook/notebook-6.3.0.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/notebook/notebook-6.3.0.ebuild b/dev-python/notebook/notebook-6.3.0.ebuild index 0ee849912ef..79f3213aac1 100644 --- a/dev-python/notebook/notebook-6.3.0.ebuild +++ b/dev-python/notebook/notebook-6.3.0.ebuild @@ -58,8 +58,6 @@ python_prepare_all() { python_test() { local deselect=( - # require geckodriver - notebook/tests/selenium # trash doesn't seem to work for us notebook/services/contents/tests/test_contents_api.py::GenericFileCheckpointsAPITest::test_checkpoints_follow_file notebook/services/contents/tests/test_contents_api.py::GenericFileCheckpointsAPITest::test_delete @@ -73,7 +71,8 @@ python_test() { notebook/services/kernels/tests/test_kernels_api.py::KernelCullingTest::test_culling ) - epytest ${deselect[@]/#/--deselect } + # selenium tests require geckodriver + epytest --ignore notebook/tests/selenium ${deselect[@]/#/--deselect } } python_install() {