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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F01A315808C for ; Fri, 8 Apr 2022 11:10:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FDDDE0936; Fri, 8 Apr 2022 11:10:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 094D2E0930 for ; Fri, 8 Apr 2022 11:10:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id EC5DA335C38 for ; Fri, 8 Apr 2022 11:10:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36AD539F for ; Fri, 8 Apr 2022 11:09:59 +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: <1649416192.c6281e3efd0a2b60bf11dc6a074165333b34b83c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/watchgod/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/watchgod/watchgod-0.8.1.ebuild X-VCS-Directories: dev-python/watchgod/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c6281e3efd0a2b60bf11dc6a074165333b34b83c X-VCS-Branch: master Date: Fri, 8 Apr 2022 11:09:59 +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: 45c2b36d-7b6c-4229-8e75-6935e7150c57 X-Archives-Hash: 2720bf44ec1f405dbb2a3da240f64ffc commit: c6281e3efd0a2b60bf11dc6a074165333b34b83c Author: Michał Górny gentoo org> AuthorDate: Fri Apr 8 10:56:38 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Apr 8 11:09:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6281e3e dev-python/watchgod: Enable pypy3 Signed-off-by: Michał Górny gentoo.org> dev-python/watchgod/watchgod-0.8.1.ebuild | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/dev-python/watchgod/watchgod-0.8.1.ebuild b/dev-python/watchgod/watchgod-0.8.1.ebuild index be3e64483bb4..4e6dd5a7db55 100644 --- a/dev-python/watchgod/watchgod-0.8.1.ebuild +++ b/dev-python/watchgod/watchgod-0.8.1.ebuild @@ -35,10 +35,6 @@ BDEPEND=" distutils_enable_tests pytest -EPYTEST_DESELECT=( - # flaky test on slow systems, https://github.com/samuelcolvin/watchgod/issues/84 - tests/test_watch.py::test_awatch_log -) src_prepare() { # increase timeout @@ -46,3 +42,14 @@ src_prepare() { distutils-r1_src_prepare } + +python_test() { + local EPYTEST_DESELECT=( + # flaky test on slow systems, https://github.com/samuelcolvin/watchgod/issues/84 + tests/test_watch.py::test_awatch_log + ) + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( + tests/test_watch.py::test_does_not_exist + ) + epytest +}