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 6B87A139345 for ; Sun, 25 Jul 2021 18:04:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66B38E0D0D; Sun, 25 Jul 2021 18:04:08 +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 195A1E0D0D for ; Sun, 25 Jul 2021 18:04:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C27BD342D1E for ; Sun, 25 Jul 2021 18:04:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B615827 for ; Sun, 25 Jul 2021 18:04:05 +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: <1627236241.3f4ea83c1758f7e894edb658f28dd698c613b525.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-email-validator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-email-validator/python-email-validator-1.1.3.ebuild X-VCS-Directories: dev-python/python-email-validator/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3f4ea83c1758f7e894edb658f28dd698c613b525 X-VCS-Branch: master Date: Sun, 25 Jul 2021 18:04:05 +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: fd73e79e-3d18-47de-b81b-4df93caf3743 X-Archives-Hash: e5c9767d0116775466eb5b9a4a983f36 commit: 3f4ea83c1758f7e894edb658f28dd698c613b525 Author: Michał Górny gentoo org> AuthorDate: Sun Jul 25 18:02:07 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 25 18:04:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f4ea83c dev-python/python-email-validator: Skip more internet tests Closes: https://bugs.gentoo.org/804211 Signed-off-by: Michał Górny gentoo.org> .../python-email-validator/python-email-validator-1.1.3.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/python-email-validator/python-email-validator-1.1.3.ebuild b/dev-python/python-email-validator/python-email-validator-1.1.3.ebuild index 4755828be07..37514f3ad4d 100644 --- a/dev-python/python-email-validator/python-email-validator-1.1.3.ebuild +++ b/dev-python/python-email-validator/python-email-validator-1.1.3.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 @@ -29,6 +29,10 @@ python_test() { tests/test_main.py::test_deliverability_fails tests/test_main.py::test_validate_email__with_caching_resolver tests/test_main.py::test_validate_email__with_configured_resolver + # these tests rely on example.com being resolvable + tests/test_main.py::test_main_single_good_input + tests/test_main.py::test_main_multi_input + tests/test_main.py::test_main_input_shim ) epytest ${deselect[@]/#/--deselect }