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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CBF3215800C for ; Fri, 30 Dec 2022 01:10:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBE48E091B; Fri, 30 Dec 2022 01:09:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 CB549E091B for ; Fri, 30 Dec 2022 01:09:59 +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 35558340E5C for ; Fri, 30 Dec 2022 01:09:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73DAC7DC for ; Fri, 30 Dec 2022 01:09:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1672362469.93a67bfce994db4d100227dc882c8624ecca72f9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-filter-repo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-filter-repo/git-filter-repo-2.34.0-r1.ebuild dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild X-VCS-Directories: dev-vcs/git-filter-repo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 93a67bfce994db4d100227dc882c8624ecca72f9 X-VCS-Branch: master Date: Fri, 30 Dec 2022 01:09:56 +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: 3037d17a-a71c-4081-a03d-7e94b3870f45 X-Archives-Hash: d3c320de1afbfa3c2ab8e0282d402e7f commit: 93a67bfce994db4d100227dc882c8624ecca72f9 Author: Sam James gentoo org> AuthorDate: Fri Dec 30 01:07:49 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Dec 30 01:07:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a67bfc dev-vcs/git-filter-repo: fix tests Closes: https://bugs.gentoo.org/888866 Signed-off-by: Sam James gentoo.org> dev-vcs/git-filter-repo/git-filter-repo-2.34.0-r1.ebuild | 3 ++- dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-vcs/git-filter-repo/git-filter-repo-2.34.0-r1.ebuild b/dev-vcs/git-filter-repo/git-filter-repo-2.34.0-r1.ebuild index 26a92dc53d0a..4a3fc751bf71 100644 --- a/dev-vcs/git-filter-repo/git-filter-repo-2.34.0-r1.ebuild +++ b/dev-vcs/git-filter-repo/git-filter-repo-2.34.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021 Gentoo Authors +# Copyright 2021-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -32,5 +32,6 @@ EOF } src_test() { + cd .. || die bash t/run_tests || die } diff --git a/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild b/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild index 321bde43f057..2bb4e78a5dcc 100644 --- a/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild +++ b/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild @@ -33,6 +33,7 @@ python_prepare_all() { } src_test() { + cd .. || die bash t/run_tests || die }