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 3E0A4139360 for ; Sat, 7 Aug 2021 11:34:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED1E4E08D3; Sat, 7 Aug 2021 11:34:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 05F66E08D3 for ; Sat, 7 Aug 2021 11:34:50 +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 8DC27342BD8 for ; Sat, 7 Aug 2021 11:34:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1A957D6 for ; Sat, 7 Aug 2021 11:34:46 +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: <1628335716.295fda9539f408a0e4633a08748f5e130bf7c800.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pushbullet-py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pushbullet-py/pushbullet-py-0.12.0.ebuild X-VCS-Directories: dev-python/pushbullet-py/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 295fda9539f408a0e4633a08748f5e130bf7c800 X-VCS-Branch: master Date: Sat, 7 Aug 2021 11:34:46 +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: 8fab80a1-ac12-43b7-a3e0-1b47ad8581ef X-Archives-Hash: d1d005f2230fc7bb91dd5d5ccca9f2fc commit: 295fda9539f408a0e4633a08748f5e130bf7c800 Author: Louis Sautier gentoo org> AuthorDate: Sat Aug 7 11:26:52 2021 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sat Aug 7 11:28:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=295fda95 dev-python/pushbullet-py: remove die after epytest Signed-off-by: Louis Sautier gentoo.org> dev-python/pushbullet-py/pushbullet-py-0.12.0.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev-python/pushbullet-py/pushbullet-py-0.12.0.ebuild b/dev-python/pushbullet-py/pushbullet-py-0.12.0.ebuild index 77ea383ad82..ab98843f51a 100644 --- a/dev-python/pushbullet-py/pushbullet-py-0.12.0.ebuild +++ b/dev-python/pushbullet-py/pushbullet-py-0.12.0.ebuild @@ -34,8 +34,7 @@ distutils_enable_tests pytest python_test() { # Skip tests which require internet access - PUSHBULLET_API_KEY= epytest -k "not (test_auth or test_decryption)" \ - || die "Tests failed with ${EPYTHON}" + PUSHBULLET_API_KEY= epytest -k "not (test_auth or test_decryption)" } python_install_all() {