summaryrefslogtreecommitdiff
path: root/dev-python/flask
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/flask')
-rw-r--r--dev-python/flask/flask-2.3.2.ebuild9
1 files changed, 8 insertions, 1 deletions
diff --git a/dev-python/flask/flask-2.3.2.ebuild b/dev-python/flask/flask-2.3.2.ebuild
index 42ed25f381b7..3ec91118c391 100644
--- a/dev-python/flask/flask-2.3.2.ebuild
+++ b/dev-python/flask/flask-2.3.2.ebuild
@@ -41,7 +41,7 @@ RDEPEND="
BDEPEND="
test? (
>=dev-python/asgiref-3.2[${PYTHON_USEDEP}]
- !!dev-python/shiboken2
+ !!dev-python/shiboken2[${PYTHON_USEDEP}]
)
"
@@ -53,6 +53,13 @@ distutils_enable_sphinx docs \
distutils_enable_tests pytest
python_test() {
+ local EPYTEST_DESELECT=()
+ if [[ ${EPYTHON} == python3.12 ]]; then
+ EPYTEST_DESELECT+=(
+ tests/test_basic.py::test_max_cookie_size
+ )
+ fi
+
epytest -p no:httpbin
}