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 911E1138350 for ; Sun, 26 Apr 2020 12:51:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FDB1E0A88; Sun, 26 Apr 2020 12:51:14 +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 45D0FE0A87 for ; Sun, 26 Apr 2020 12:51:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 54C1634F5C5 for ; Sun, 26 Apr 2020 12:51:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EAD671F9 for ; Sun, 26 Apr 2020 12:51:09 +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: <1587905455.4f37f4e484f66a17866eae71ebe85314cbc865c7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tinycss/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tinycss/tinycss-0.4.ebuild X-VCS-Directories: dev-python/tinycss/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4f37f4e484f66a17866eae71ebe85314cbc865c7 X-VCS-Branch: master Date: Sun, 26 Apr 2020 12:51:09 +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: a511ca02-2230-4561-8c64-92c4c6a13a6c X-Archives-Hash: 8864f515d0fb676c28dead8e5c0798e2 commit: 4f37f4e484f66a17866eae71ebe85314cbc865c7 Author: Michał Górny gentoo org> AuthorDate: Sun Apr 26 12:35:54 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 26 12:50:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f37f4e4 dev-python/tinycss: Enable py3.{7,8} Signed-off-by: Michał Górny gentoo.org> dev-python/tinycss/tinycss-0.4.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dev-python/tinycss/tinycss-0.4.ebuild b/dev-python/tinycss/tinycss-0.4.ebuild index 61c40e7cfbc..f69dee9435d 100644 --- a/dev-python/tinycss/tinycss-0.4.ebuild +++ b/dev-python/tinycss/tinycss-0.4.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python{2_7,3_6} ) +PYTHON_COMPAT=( python{2_7,3_{6,7,8}} ) inherit distutils-r1 @@ -32,8 +32,5 @@ python_prepare_all() { python_test() { export TINYCSS_SKIP_SPEEDUPS_TESTS=1 - local test - for test in ${PN}/tests/test_*.py; do - py.test $test || die - done + pytest -vv ${PN}/tests/test_*.py || die }