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 F2E1A1581FB for ; Tue, 27 Aug 2024 09:57:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12279E29BD; Tue, 27 Aug 2024 09:57:17 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D2F68E29BD for ; Tue, 27 Aug 2024 09:57:16 +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 E37D334306E for ; Tue, 27 Aug 2024 09:57:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49E7F1F29 for ; Tue, 27 Aug 2024 09:57:14 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1724588987.c766fb0bb254f99e6b96f3e64cc5346b72773c1a.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/pop-launcher/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/pop-launcher/pop-launcher-1.2.1.ebuild X-VCS-Directories: gui-apps/pop-launcher/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: c766fb0bb254f99e6b96f3e64cc5346b72773c1a X-VCS-Branch: master Date: Tue, 27 Aug 2024 09:57:14 +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: aa2452d6-6903-4e3e-ab7a-c41a83466390 X-Archives-Hash: b298eddcdff5684a7b603efe0916e7c9 commit: c766fb0bb254f99e6b96f3e64cc5346b72773c1a Author: Daichi Yamamoto dyama net> AuthorDate: Sun Aug 25 12:29:25 2024 +0000 Commit: David Roman gmail com> CommitDate: Sun Aug 25 12:29:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c766fb0b gui-apps/pop-launcher: fix tests Closes: https://bugs.gentoo.org/938496 Signed-off-by: Daichi Yamamoto dyama.net> gui-apps/pop-launcher/pop-launcher-1.2.1.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gui-apps/pop-launcher/pop-launcher-1.2.1.ebuild b/gui-apps/pop-launcher/pop-launcher-1.2.1.ebuild index 14100358c..a81ac9e5f 100644 --- a/gui-apps/pop-launcher/pop-launcher-1.2.1.ebuild +++ b/gui-apps/pop-launcher/pop-launcher-1.2.1.ebuild @@ -259,3 +259,11 @@ src_install() { einstalldocs } + +src_test() { + local mytestargs=( + # The following tests require network access. + --skip web::test + ) + cargo_src_test -- "${mytestargs[@]}" +}