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 89E8B15838C for ; Sun, 28 Jan 2024 09:49:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53A81E29BF; Sun, 28 Jan 2024 09:49:20 +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 385BFE29BF for ; Sun, 28 Jan 2024 09:49:20 +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 35FC634346E for ; Sun, 28 Jan 2024 09:49:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0AB914B6 for ; Sun, 28 Jan 2024 09:49:17 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1706435347.a85894d2ccad88c76a6f22abacc1da02e8667cbe.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagstamon/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nagstamon/nagstamon-3.12.0.ebuild X-VCS-Directories: net-analyzer/nagstamon/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: a85894d2ccad88c76a6f22abacc1da02e8667cbe X-VCS-Branch: master Date: Sun, 28 Jan 2024 09:49:17 +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: 10de1ad7-f30f-458e-afe8-562433727263 X-Archives-Hash: 11c4955bab9c5f5f4bb21f9b99087b9a commit: a85894d2ccad88c76a6f22abacc1da02e8667cbe Author: Hans de Graaff gentoo org> AuthorDate: Sun Jan 28 09:17:47 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Jan 28 09:49:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a85894d2 net-analyzer/nagstamon: run tests in a virtual X environment Signed-off-by: Hans de Graaff gentoo.org> net-analyzer/nagstamon/nagstamon-3.12.0.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/net-analyzer/nagstamon/nagstamon-3.12.0.ebuild b/net-analyzer/nagstamon/nagstamon-3.12.0.ebuild index a162f8f7d2a3..132181cc389e 100644 --- a/net-analyzer/nagstamon/nagstamon-3.12.0.ebuild +++ b/net-analyzer/nagstamon/nagstamon-3.12.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,7 +6,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 +inherit distutils-r1 virtualx distutils_enable_tests pytest @@ -58,3 +58,7 @@ src_prepare() { rm -rf "${S}/Nagstamon/thirdparty/Xlib/" || die } + +python_test() { + virtx epytest +}