From 3c0eff0475bf2587c4be661fe45bf014338adc2e Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Thu, 19 Dec 2024 18:09:57 +0500 Subject: [PATCH] dev-python/dacite: disable benchmarks Signed-off-by: Anna (cybertailor) Vyalkova --- dev-python/dacite/dacite-1.8.1.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/dev-python/dacite/dacite-1.8.1.ebuild b/dev-python/dacite/dacite-1.8.1.ebuild index b0615e706a..3f96bf80e8 100644 --- a/dev-python/dacite/dacite-1.8.1.ebuild +++ b/dev-python/dacite/dacite-1.8.1.ebuild @@ -16,8 +16,13 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" -DEPEND=" - test? ( dev-python/pytest-benchmark ) -" +EPYTEST_IGNORE=( + # benchmarks + tests/performance +) distutils_enable_tests pytest + +python_test() { + epytest -o "addopts=" +}