From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 8D0C915827B for ; Wed, 13 Aug 2025 14:21:51 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 77DE2340EDE for ; Wed, 13 Aug 2025 14:21:51 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 26377110566; Wed, 13 Aug 2025 14:21:38 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 2007C110566 for ; Wed, 13 Aug 2025 14:21:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA684340DCB for ; Wed, 13 Aug 2025 14:21:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42D9C3355 for ; Wed, 13 Aug 2025 14:21:35 +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: <1755094881.4c9177c957249c09f45afbc296dbdbac853b5892.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nbclassic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/nbclassic/nbclassic-1.3.1.ebuild X-VCS-Directories: dev-python/nbclassic/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4c9177c957249c09f45afbc296dbdbac853b5892 X-VCS-Branch: master Date: Wed, 13 Aug 2025 14:21:35 +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: d085b41b-cbcf-4acb-a23c-083106716942 X-Archives-Hash: e9e54088b886bba2b526f5789f93a25b commit: 4c9177c957249c09f45afbc296dbdbac853b5892 Author: Michał Górny gentoo org> AuthorDate: Wed Aug 13 14:10:54 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Aug 13 14:21:21 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c9177c9 dev-python/nbclassic: Use EPYTEST_PLUGINS Signed-off-by: Michał Górny gentoo.org> dev-python/nbclassic/nbclassic-1.3.1.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dev-python/nbclassic/nbclassic-1.3.1.ebuild b/dev-python/nbclassic/nbclassic-1.3.1.ebuild index 9dc717cda7cf..de14b9340448 100644 --- a/dev-python/nbclassic/nbclassic-1.3.1.ebuild +++ b/dev-python/nbclassic/nbclassic-1.3.1.ebuild @@ -30,8 +30,6 @@ BDEPEND=" dev-python/hatch-jupyter-builder[${PYTHON_USEDEP}] test? ( dev-python/nbval[${PYTHON_USEDEP}] - dev-python/pytest-jupyter[${PYTHON_USEDEP}] - dev-python/pytest-tornasync[${PYTHON_USEDEP}] dev-python/requests[${PYTHON_USEDEP}] dev-python/requests-unixsocket[${PYTHON_USEDEP}] dev-python/testpath[${PYTHON_USEDEP}] @@ -41,6 +39,7 @@ BDEPEND=" ) " +EPYTEST_PLUGINS=( pytest-{jupyter,tornasync} ) distutils_enable_tests pytest distutils_enable_sphinx docs/source \ dev-python/pydata-sphinx-theme \ @@ -67,12 +66,10 @@ src_prepare() { } python_test() { - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - # Notebook interferes with our tests, pretend it does not exist echo "raise ImportError" > notebook.py || die - epytest -p pytest_tornasync.plugin + epytest } python_install_all() {