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 7CE7015800F for ; Wed, 1 Feb 2023 13:18:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E2D6E0BD0; Wed, 1 Feb 2023 13:18:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 38A5FE0BD0 for ; Wed, 1 Feb 2023 13:18:32 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3EDC9340A3B for ; Wed, 1 Feb 2023 13:18:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FAD38A0 for ; Wed, 1 Feb 2023 13:18:28 +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: <1675257502.688e3a013cb8b7decac8a5f827c3f396a0f0ac73.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools_scm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/setuptools_scm/setuptools_scm-7.1.0.ebuild X-VCS-Directories: dev-python/setuptools_scm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 688e3a013cb8b7decac8a5f827c3f396a0f0ac73 X-VCS-Branch: master Date: Wed, 1 Feb 2023 13:18:28 +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: f907ed12-62b9-49b0-87de-29d7446ef685 X-Archives-Hash: 0fbc09a93f0e284b0cbe810110fe0012 commit: 688e3a013cb8b7decac8a5f827c3f396a0f0ac73 Author: Michał Górny gentoo org> AuthorDate: Wed Feb 1 12:35:07 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 1 13:18:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=688e3a01 dev-python/setuptools_scm: Skip problematic test w/ nose installed Closes: https://bugs.gentoo.org/892639 Signed-off-by: Michał Górny gentoo.org> .../setuptools_scm/setuptools_scm-7.1.0.ebuild | 23 ++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/dev-python/setuptools_scm/setuptools_scm-7.1.0.ebuild b/dev-python/setuptools_scm/setuptools_scm-7.1.0.ebuild index 1efefeb1ff54..b4b66d2a3ea1 100644 --- a/dev-python/setuptools_scm/setuptools_scm-7.1.0.ebuild +++ b/dev-python/setuptools_scm/setuptools_scm-7.1.0.ebuild @@ -39,10 +39,21 @@ BDEPEND=" distutils_enable_tests pytest -EPYTEST_DESELECT=( - # the usual nondescript gpg-agent failure - testing/test_git.py::test_git_getdate_signed_commit +python_test() { + local EPYTEST_DESELECT=( + # the usual nondescript gpg-agent failure + testing/test_git.py::test_git_getdate_signed_commit - # fetching from the Internet - testing/test_regressions.py::test_pip_download -) + # fetching from the Internet + testing/test_regressions.py::test_pip_download + ) + + if has_version dev-python/nose; then + EPYTEST_DESELECT+=( + # https://bugs.gentoo.org/892639 + testing/test_integration.py::test_pyproject_support + ) + fi + + epytest +}