From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1699689-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(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 DDE131581F0
	for <garchives@archives.gentoo.org>; Fri, 13 Dec 2024 01:44:04 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 2BE39E0972;
	Fri, 13 Dec 2024 01:44:04 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 242E7E0972
	for <gentoo-commits@lists.gentoo.org>; Fri, 13 Dec 2024 01:44:03 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id DD8DF34168D
	for <gentoo-commits@lists.gentoo.org>; Fri, 13 Dec 2024 01:44:01 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D94690B
	for <gentoo-commits@lists.gentoo.org>; Fri, 13 Dec 2024 01:44:00 +0000 (UTC)
From: "Louis Sautier" <sbraz@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, "Louis Sautier" <sbraz@gentoo.org>
Message-ID: <1734054209.e7360bf607ccc2598ae4967ba79a17d40b9ad65f.sbraz@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/urlwatch/
X-VCS-Repository: repo/gentoo
X-VCS-Files: www-misc/urlwatch/urlwatch-2.29.ebuild
X-VCS-Directories: www-misc/urlwatch/
X-VCS-Committer: sbraz
X-VCS-Committer-Name: Louis Sautier
X-VCS-Revision: e7360bf607ccc2598ae4967ba79a17d40b9ad65f
X-VCS-Branch: master
Date: Fri, 13 Dec 2024 01:44:00 +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: 238c6f03-8bc2-4c6d-b632-16f252d62fc3
X-Archives-Hash: b4f2461da3a816c8e5dc063b70498a50

commit:     e7360bf607ccc2598ae4967ba79a17d40b9ad65f
Author:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 13 01:40:54 2024 +0000
Commit:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Fri Dec 13 01:43:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7360bf6

www-misc/urlwatch: fix selectors to skip pycodestyle tests

The test suite has changed since 2.28 and the previous exclusion no
longer works.

Closes: https://bugs.gentoo.org/946328
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>

 www-misc/urlwatch/urlwatch-2.29.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/www-misc/urlwatch/urlwatch-2.29.ebuild b/www-misc/urlwatch/urlwatch-2.29.ebuild
index 44b99aa93824..7a3347881883 100644
--- a/www-misc/urlwatch/urlwatch-2.29.ebuild
+++ b/www-misc/urlwatch/urlwatch-2.29.ebuild
@@ -42,12 +42,15 @@ DOCS=( CHANGELOG.md README.md )
 distutils_enable_sphinx docs/source dev-python/alabaster
 distutils_enable_tests pytest
 
+EPYTEST_IGNORE=(
+	# Skip code quality check
+	"lib/urlwatch/tests/test_pep8.py"
+)
+
 EPYTEST_DESELECT=(
 	# Require the pdftotext module
 	"lib/urlwatch/tests/test_filter_documentation.py::test_url[https://example.net/pdf-test.pdf]"
 	"lib/urlwatch/tests/test_filter_documentation.py::test_url[https://example.net/pdf-test-password.pdf]"
-	# Skip code quality check
-	"lib/urlwatch/tests/test_handler.py::test_pep8_conformance"
 )
 
 pkg_postinst() {