From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1333021-garchives=archives.gentoo.org@lists.gentoo.org>
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 09FD2158086
	for <garchives@archives.gentoo.org>; Sun, 24 Oct 2021 01:20:07 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 27B04E070D;
	Sun, 24 Oct 2021 01:20:06 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id DB8F0E075F
	for <gentoo-commits@lists.gentoo.org>; Sun, 24 Oct 2021 01:20:05 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 7E0CD340A12
	for <gentoo-commits@lists.gentoo.org>; Sun, 24 Oct 2021 01:20:03 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 79A77156
	for <gentoo-commits@lists.gentoo.org>; Sun, 24 Oct 2021 01:20:01 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1635038297.039b6d188d5d1277d78a069f744cbef95154a768.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sentry-sdk/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/sentry-sdk/sentry-sdk-1.4.3.ebuild
X-VCS-Directories: dev-python/sentry-sdk/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 039b6d188d5d1277d78a069f744cbef95154a768
X-VCS-Branch: master
Date: Sun, 24 Oct 2021 01:20:01 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 3aee0610-100d-442a-8de9-51d4dd05710e
X-Archives-Hash: fbb041fb153251486509314a6182acb9

commit:     039b6d188d5d1277d78a069f744cbef95154a768
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 24 01:18:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 24 01:18:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=039b6d18

dev-python/sentry-sdk: use EPYTEST_IGNORE to skip whole test files too

Bug: https://bugs.gentoo.org/819864
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/sentry-sdk/sentry-sdk-1.4.3.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-python/sentry-sdk/sentry-sdk-1.4.3.ebuild b/dev-python/sentry-sdk/sentry-sdk-1.4.3.ebuild
index d0881dad90d..c3d2764d436 100644
--- a/dev-python/sentry-sdk/sentry-sdk-1.4.3.ebuild
+++ b/dev-python/sentry-sdk/sentry-sdk-1.4.3.ebuild
@@ -42,13 +42,16 @@ BDEPEND="
 distutils_enable_tests pytest
 
 python_test() {
-	local deselect=(
+	local EPYTEST_IGNORE=(
 		# tests require Internet access
 		tests/integrations/httpx/test_httpx.py
 		tests/integrations/requests/test_requests.py
 		tests/integrations/stdlib/test_httplib.py
 		# wtf is it supposed to do?!
 		tests/integrations/gcp/test_gcp.py
+	)
+
+	local EPYTEST_DESELECT=(
 		# hangs
 		'tests/test_transport.py::test_transport_works[eventlet'
 		# TODO
@@ -68,5 +71,5 @@ python_test() {
 	# Needs to detect sentry-sdk in the installed modules
 	distutils_install_for_testing
 
-	epytest ${deselect[@]/#/--deselect }
+	epytest
 }