summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@gentoo.org>2025-12-30 15:58:15 -0500
committerEli Schwartz <eschwartz@gentoo.org>2025-12-30 16:19:36 -0500
commit809c55df7c2e090b864fef6f5270548c6afd45b2 (patch)
treecc40531ccff0e289de9b67f523b3308b7c19cacf /dev-python
parent6ab1a02ea86271dce90195f756d54fdf321a7ac0 (diff)
downloadgentoo-809c55df7c2e090b864fef6f5270548c6afd45b2.tar.gz
gentoo-809c55df7c2e090b864fef6f5270548c6afd45b2.tar.bz2
gentoo-809c55df7c2e090b864fef6f5270548c6afd45b2.zip
dev-python/sqlparse: disable tests for "DoS Prevention"
They trigger under system load as well, unsurprisingly. Upstream DoS tests are "Co-authored-by: AI" so I don't have high hopes that there is meaningful value to extract from said tests. Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/sqlparse/sqlparse-0.5.5.ebuild6
1 files changed, 6 insertions, 0 deletions
diff --git a/dev-python/sqlparse/sqlparse-0.5.5.ebuild b/dev-python/sqlparse/sqlparse-0.5.5.ebuild
index eee1681890ba..24f404230c33 100644
--- a/dev-python/sqlparse/sqlparse-0.5.5.ebuild
+++ b/dev-python/sqlparse/sqlparse-0.5.5.ebuild
@@ -21,3 +21,9 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc
distutils_enable_sphinx docs/source
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+ # more likely to fail because emerging in parallel than because DoS
+ # prevention is in fact broken
+ tests/test_dos_prevention.py
+)