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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2DC6158086 for ; Sat, 30 Oct 2021 07:52:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0844E081A; Sat, 30 Oct 2021 07:52:39 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7529E081A for ; Sat, 30 Oct 2021 07:52:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6BEED343220 for ; Sat, 30 Oct 2021 07:52:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC52D7A for ; Sat, 30 Oct 2021 07:52:36 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1635580326.df822423436f87dcd357ff2e2af57e041135d661.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/websockets/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/websockets/websockets-9.1-r1.ebuild X-VCS-Directories: dev-python/websockets/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: df822423436f87dcd357ff2e2af57e041135d661 X-VCS-Branch: master Date: Sat, 30 Oct 2021 07:52:36 +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: 448508aa-dac7-4b9a-b687-c675028ebe6d X-Archives-Hash: ba4cf822dbaf4c27118246bccfe65ff4 commit: df822423436f87dcd357ff2e2af57e041135d661 Author: James Le Cuirot gentoo org> AuthorDate: Sat Oct 30 07:52:06 2021 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sat Oct 30 07:52:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df822423 dev-python/websockets: Fix tests on slower systems for 9.1 Infuriatingly, this approach makes one of the 10.0 tests fail consistently on my fast desktop. Bug: https://bugs.gentoo.org/810094 Signed-off-by: James Le Cuirot gentoo.org> dev-python/websockets/websockets-9.1-r1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-python/websockets/websockets-9.1-r1.ebuild b/dev-python/websockets/websockets-9.1-r1.ebuild index b4202f59a40..319a32d784b 100644 --- a/dev-python/websockets/websockets-9.1-r1.ebuild +++ b/dev-python/websockets/websockets-9.1-r1.ebuild @@ -33,3 +33,6 @@ src_prepare() { distutils-r1_src_prepare } + +# Be more tolerant with time-sensitive tests for slow systems. +export WEBSOCKETS_TESTS_TIMEOUT_FACTOR=100