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 A395D138334 for ; Wed, 22 Aug 2018 15:12:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9ED77E096A; Wed, 22 Aug 2018 15:12:54 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 738D0E096A for ; Wed, 22 Aug 2018 15:12:54 +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 D0FF6335D27 for ; Wed, 22 Aug 2018 15:12:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4AEE398 for ; Wed, 22 Aug 2018 15:12:50 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1534950751.870b8bb277eb7d876ff8d5482a0b1454fa6b3784.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/colorama/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/colorama/colorama-0.3.9-r1.ebuild X-VCS-Directories: dev-python/colorama/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 870b8bb277eb7d876ff8d5482a0b1454fa6b3784 X-VCS-Branch: master Date: Wed, 22 Aug 2018 15:12:50 +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-Archives-Salt: 5eaedbdf-cb23-45f1-9cd9-4444f715652c X-Archives-Hash: fddb8356729c0394da65445f6ecfec8d commit: 870b8bb277eb7d876ff8d5482a0b1454fa6b3784 Author: Louis Sautier gentoo org> AuthorDate: Wed Aug 22 09:05:51 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Wed Aug 22 15:12:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870b8bb2 dev-python/colorama: run tests with 'script' to make stdout a TTY Package-Manager: Portage-2.3.48, Repoman-2.3.10 dev-python/colorama/colorama-0.3.9-r1.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/colorama/colorama-0.3.9-r1.ebuild b/dev-python/colorama/colorama-0.3.9-r1.ebuild index 05ea77f60e5..31476d291ca 100644 --- a/dev-python/colorama/colorama-0.3.9-r1.ebuild +++ b/dev-python/colorama/colorama-0.3.9-r1.ebuild @@ -36,9 +36,8 @@ python_install_all() { } python_test() { - # Skip two tests which seem to fail when stdout isn't a TTY + # Some tests require stdout to be a TTY # https://github.com/tartley/colorama/issues/169 - pytest -vv -k "not (testInitDoesntWrapOnEmulatedWindows \ - or testInitDoesntWrapOnNonWindows)" \ + script -eqc "pytest -vv -s" /dev/null \ || die "tests failed with ${EPYTHON}" }