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 4CAF41580B9 for ; Tue, 24 Aug 2021 18:20:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06962E08A8; Tue, 24 Aug 2021 18:20:34 +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 BC312E08A8 for ; Tue, 24 Aug 2021 18:20:33 +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 C314E3406F2 for ; Tue, 24 Aug 2021 18:20:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 180A78D3 for ; Tue, 24 Aug 2021 18:20:31 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1629829082.1127f19d7641715363127ef85590679b887382f3.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-wtf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-wtf/flask-wtf-0.15.1.ebuild X-VCS-Directories: dev-python/flask-wtf/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 1127f19d7641715363127ef85590679b887382f3 X-VCS-Branch: master Date: Tue, 24 Aug 2021 18:20:31 +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: 1ec41445-66f9-448d-821c-3af7b9bcb52c X-Archives-Hash: 346b4d9818ce4b48f4a63cbb8acf8c4b commit: 1127f19d7641715363127ef85590679b887382f3 Author: Arthur Zamarin gentoo org> AuthorDate: Mon Aug 23 18:16:49 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Tue Aug 24 18:18:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1127f19d dev-python/flask-wtf: remove redundant declarations, cleanup test Signed-off-by: Arthur Zamarin gentoo.org> dev-python/flask-wtf/flask-wtf-0.15.1.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-python/flask-wtf/flask-wtf-0.15.1.ebuild b/dev-python/flask-wtf/flask-wtf-0.15.1.ebuild index 64af34e29e5..28eb66691c8 100644 --- a/dev-python/flask-wtf/flask-wtf-0.15.1.ebuild +++ b/dev-python/flask-wtf/flask-wtf-0.15.1.ebuild @@ -17,8 +17,6 @@ S="${WORKDIR}/${MY_P}" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 x86" -IUSE="doc test" -RESTRICT="!test? ( test )" RDEPEND=" >=dev-python/Babel-1[${PYTHON_USEDEP}] @@ -33,8 +31,9 @@ RDEPEND=" distutils_enable_sphinx docs distutils_enable_tests pytest -python_prepare_all() { +EPYTEST_DESELECT=( # tries to access things over the network - rm tests/test_recaptcha.py || die - distutils-r1_python_prepare_all -} + tests/test_recaptcha.py + # unpackaged Flask-Uploads + tests/test_file.py +)