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 3F0DD158088 for ; Tue, 26 Oct 2021 11:12:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C822E0837; Tue, 26 Oct 2021 11:12:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7180E0837 for ; Tue, 26 Oct 2021 11:12:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1FE6343991 for ; Tue, 26 Oct 2021 11:12:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E0B4177 for ; Tue, 26 Oct 2021 11:12: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: <1635246744.1b2a318760328ff511c4e43cb1c72e2152b3b2ec.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonschema/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsonschema/jsonschema-4.0.1.ebuild dev-python/jsonschema/jsonschema-4.1.0.ebuild dev-python/jsonschema/jsonschema-4.1.1.ebuild dev-python/jsonschema/jsonschema-4.1.2.ebuild X-VCS-Directories: dev-python/jsonschema/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1b2a318760328ff511c4e43cb1c72e2152b3b2ec X-VCS-Branch: master Date: Tue, 26 Oct 2021 11:12: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: a9adf77c-1e5e-4ac2-9c8e-8fe28645b94e X-Archives-Hash: 97dbac3ecf005abaa112356b5a948b57 commit: 1b2a318760328ff511c4e43cb1c72e2152b3b2ec Author: Michał Górny gentoo org> AuthorDate: Tue Oct 26 07:19:25 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Oct 26 11:12:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b2a3187 dev-python/jsonschema: Disable the test requiring pip Closes: https://bugs.gentoo.org/816327 Signed-off-by: Michał Górny gentoo.org> dev-python/jsonschema/jsonschema-4.0.1.ebuild | 7 ++++++- dev-python/jsonschema/jsonschema-4.1.0.ebuild | 7 ++++++- dev-python/jsonschema/jsonschema-4.1.1.ebuild | 7 ++++++- dev-python/jsonschema/jsonschema-4.1.2.ebuild | 7 ++++++- 4 files changed, 24 insertions(+), 4 deletions(-) diff --git a/dev-python/jsonschema/jsonschema-4.0.1.ebuild b/dev-python/jsonschema/jsonschema-4.0.1.ebuild index fad4177993e..903e733761d 100644 --- a/dev-python/jsonschema/jsonschema-4.0.1.ebuild +++ b/dev-python/jsonschema/jsonschema-4.0.1.ebuild @@ -42,4 +42,9 @@ BDEPEND=" ) " -distutils_enable_tests unittest +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # requires pip, does not make much sense for the users + jsonschema/tests/test_cli.py::TestCLIIntegration::test_license +) diff --git a/dev-python/jsonschema/jsonschema-4.1.0.ebuild b/dev-python/jsonschema/jsonschema-4.1.0.ebuild index 904fc6ee1ce..3eee583f960 100644 --- a/dev-python/jsonschema/jsonschema-4.1.0.ebuild +++ b/dev-python/jsonschema/jsonschema-4.1.0.ebuild @@ -42,4 +42,9 @@ BDEPEND=" ) " -distutils_enable_tests unittest +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # requires pip, does not make much sense for the users + jsonschema/tests/test_cli.py::TestCLIIntegration::test_license +) diff --git a/dev-python/jsonschema/jsonschema-4.1.1.ebuild b/dev-python/jsonschema/jsonschema-4.1.1.ebuild index 904fc6ee1ce..3eee583f960 100644 --- a/dev-python/jsonschema/jsonschema-4.1.1.ebuild +++ b/dev-python/jsonschema/jsonschema-4.1.1.ebuild @@ -42,4 +42,9 @@ BDEPEND=" ) " -distutils_enable_tests unittest +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # requires pip, does not make much sense for the users + jsonschema/tests/test_cli.py::TestCLIIntegration::test_license +) diff --git a/dev-python/jsonschema/jsonschema-4.1.2.ebuild b/dev-python/jsonschema/jsonschema-4.1.2.ebuild index 85ab95abeec..52313e225d8 100644 --- a/dev-python/jsonschema/jsonschema-4.1.2.ebuild +++ b/dev-python/jsonschema/jsonschema-4.1.2.ebuild @@ -42,4 +42,9 @@ BDEPEND=" ) " -distutils_enable_tests unittest +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # requires pip, does not make much sense for the users + jsonschema/tests/test_cli.py::TestCLIIntegration::test_license +)