commit: 3c0eff0475bf2587c4be661fe45bf014338adc2e
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Dec 19 13:09:57 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Dec 19 13:47:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c0eff04
dev-python/dacite: disable benchmarks
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
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 b0615e706..3f96bf80e 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="
+}