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 967B11382C5 for ; Sun, 7 Mar 2021 21:10:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA6F1E092B; Sun, 7 Mar 2021 21:10:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 CFC75E092B for ; Sun, 7 Mar 2021 21:10:31 +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 820DE335D46 for ; Sun, 7 Mar 2021 21:10:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02FF34A8 for ; Sun, 7 Mar 2021 21:10:29 +0000 (UTC) From: "Sam James" 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" Message-ID: <1615151422.99dfa41f7949a4f38b72b6800991ca29d98846e0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgdev/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pkgdev/pkgdev-0.1.ebuild dev-util/pkgdev/pkgdev-9999.ebuild X-VCS-Directories: dev-util/pkgdev/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 99dfa41f7949a4f38b72b6800991ca29d98846e0 X-VCS-Branch: master Date: Sun, 7 Mar 2021 21:10:29 +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: a1a2db5c-2ea9-4dae-8811-968de249a219 X-Archives-Hash: 3b189582dcf17cb748436bbcb0f716e4 commit: 99dfa41f7949a4f38b72b6800991ca29d98846e0 Author: Sam James gentoo org> AuthorDate: Sun Mar 7 21:09:48 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 7 21:10:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99dfa41f dev-util/pkgdev: switch to setup.py test runner Signed-off-by: Sam James gentoo.org> dev-util/pkgdev/pkgdev-0.1.ebuild | 4 +++- dev-util/pkgdev/pkgdev-9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-util/pkgdev/pkgdev-0.1.ebuild b/dev-util/pkgdev/pkgdev-0.1.ebuild index fb2168b4e3e..fdf04f9fc03 100644 --- a/dev-util/pkgdev/pkgdev-0.1.ebuild +++ b/dev-util/pkgdev/pkgdev-0.1.ebuild @@ -37,10 +37,12 @@ else " fi +# Uses pytest but we want to use the setup.py runner to get generated modules +BDEPEND+="test? ( dev-python/pytest )" RDEPEND+="dev-vcs/git" distutils_enable_sphinx doc -distutils_enable_tests pytest +distutils_enable_tests setup.py python_install_all() { # We'll generate man pages ourselves diff --git a/dev-util/pkgdev/pkgdev-9999.ebuild b/dev-util/pkgdev/pkgdev-9999.ebuild index 587e2ad6a94..041813b0cea 100644 --- a/dev-util/pkgdev/pkgdev-9999.ebuild +++ b/dev-util/pkgdev/pkgdev-9999.ebuild @@ -37,10 +37,12 @@ else " fi +# Uses pytest but we want to use the setup.py runner to get generated modules +BDEPEND+="test? ( dev-python/pytest )" RDEPEND+="dev-vcs/git" distutils_enable_sphinx doc -distutils_enable_tests pytest +distutils_enable_tests setup.py python_install_all() { # We'll generate man pages ourselves