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 8D0A5139337 for ; Mon, 28 Jun 2021 13:56:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF4FCE0863; Mon, 28 Jun 2021 13:56:19 +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 A8052E0863 for ; Mon, 28 Jun 2021 13:56:19 +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 C0776335D05 for ; Mon, 28 Jun 2021 13:56:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5AD2C7BB for ; Mon, 28 Jun 2021 13:56:17 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1624887253.013b4b2f04d6f57ae1e0f603a70675ff7ec67918.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/hunter/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/hunter/hunter-3.3.8.ebuild X-VCS-Directories: dev-python/hunter/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 013b4b2f04d6f57ae1e0f603a70675ff7ec67918 X-VCS-Branch: master Date: Mon, 28 Jun 2021 13:56:17 +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: f657b9f8-41cb-46b3-b57c-33ce13e4b79b X-Archives-Hash: 0345371227c15ff3f97cd645c65f9f86 commit: 013b4b2f04d6f57ae1e0f603a70675ff7ec67918 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Jun 28 13:28:03 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Jun 28 13:34:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=013b4b2f dev-python/hunter: deselect manhole tests Closes: https://bugs.gentoo.org/799026 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/hunter/hunter-3.3.8.ebuild | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/dev-python/hunter/hunter-3.3.8.ebuild b/dev-python/hunter/hunter-3.3.8.ebuild index 54715337c..99d13170b 100644 --- a/dev-python/hunter/hunter-3.3.8.ebuild +++ b/dev-python/hunter/hunter-3.3.8.ebuild @@ -51,14 +51,8 @@ python_compile() { python_test() { local -x PYTHONPATH="${S}/tests:${BUILD_DIR}/lib:${PYTHONPATH}" -# epytest -vv \ -# --deselect tests/test_integration.py::test_pid_prefix[True-CodePrinter] \ -# --deselect tests/test_integration.py::test_pid_prefix[False-CodePrinter] \ -# --deselect tests/test_integration.py::test_pid_prefix[True-CallPrinter] \ -# --deselect tests/test_integration.py::test_pid_prefix[False-CallPrinter] \ -# --deselect tests/test_remote.py::test_manhole \ -# --deselect tests/test_remote.py::test_manhole_clean_exit \ -# --deselect tests/test_tracer.py::test_perf_stdlib[cython] \ -# || die - epytest -vv || die + epytest -vv \ + --deselect tests/test_remote.py::test_manhole \ + --deselect tests/test_remote.py::test_manhole_clean_exit \ + || die }