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 4027615817D for ; Wed, 19 Jun 2024 07:15:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1771FE2A2C; Wed, 19 Jun 2024 07:15:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED6A5E2A2C for ; Wed, 19 Jun 2024 07:15:30 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0FD0B33BEE9 for ; Wed, 19 Jun 2024 07:15:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAB1E1D2D for ; Wed, 19 Jun 2024 07:15:27 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1718777965.59bbfc30df2c59cf48c2e688aa4415006a814239.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/cloudflare/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/cloudflare/cloudflare-3.0.0_beta10.ebuild X-VCS-Directories: dev-python/cloudflare/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 59bbfc30df2c59cf48c2e688aa4415006a814239 X-VCS-Branch: master Date: Wed, 19 Jun 2024 07:15:27 +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: e0822387-af3f-4bd9-ad25-c2c7db1c23cc X-Archives-Hash: 533f5941d1bbeea7ec35b9235541a6bd commit: 59bbfc30df2c59cf48c2e688aa4415006a814239 Author: Kyle Elbert gmail com> AuthorDate: Wed Jun 19 06:19:25 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Jun 19 06:19:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=59bbfc30 dev-python/cloudflare: cleanup test server Signed-off-by: Kyle Elbert gmail.com> dev-python/cloudflare/cloudflare-3.0.0_beta10.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/cloudflare/cloudflare-3.0.0_beta10.ebuild b/dev-python/cloudflare/cloudflare-3.0.0_beta10.ebuild index e9b2842da..eb7c347b8 100644 --- a/dev-python/cloudflare/cloudflare-3.0.0_beta10.ebuild +++ b/dev-python/cloudflare/cloudflare-3.0.0_beta10.ebuild @@ -77,6 +77,7 @@ src_test() { # Run prism mock api server, this is what needs nodejs node --no-warnings node_modules/@stoplight/prism-cli/dist/index.js mock \ "cloudflare-spec.yml" >prism.log & + local MOCK_PID=$! # Wait for server to come online echo -n "Waiting for mockserver" while ! grep -q "✖ fatal\|Prism is listening" "prism.log" ; do @@ -87,4 +88,5 @@ src_test() { die "Prism mock server failed" fi distutils-r1_src_test + kill "${MOCK_PID}" }