summaryrefslogtreecommitdiff
path: root/dev-python/xmlsec
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-09-15 03:04:39 -0500
committerroot <root@alpha.trunkmasters.com>2026-09-15 03:04:39 -0500
commitc012d247f03a893c117c88f73bcf6cb6494dcd22 (patch)
tree89fc51e9b45239a8e4233e466f4746f81ec6718f /dev-python/xmlsec
parentd09313d7f2546bde376a20ff739a5e90cb229e25 (diff)
downloadbaldeagleos-repo-c012d247f03a893c117c88f73bcf6cb6494dcd22.tar.gz
baldeagleos-repo-c012d247f03a893c117c88f73bcf6cb6494dcd22.tar.xz
baldeagleos-repo-c012d247f03a893c117c88f73bcf6cb6494dcd22.zip
Adding metadata
Diffstat (limited to 'dev-python/xmlsec')
-rw-r--r--dev-python/xmlsec/xmlsec-1.3.17-r1.ebuild19
1 files changed, 19 insertions, 0 deletions
diff --git a/dev-python/xmlsec/xmlsec-1.3.17-r1.ebuild b/dev-python/xmlsec/xmlsec-1.3.17-r1.ebuild
index db70398b265b..3e8ede6909bb 100644
--- a/dev-python/xmlsec/xmlsec-1.3.17-r1.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.17-r1.ebuild
@@ -62,3 +62,22 @@ src_configure() {
export CPPFLAGS="${CPPFLAGS} -DPYXMLSEC_ENABLE_DEBUG=1"
fi
}
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # black version?
+ tests/test_type_stubs.py::test_xmlsec_constants_stub
+ )
+
+ case ${EPYTHON} in
+ python3.15*)
+ EPYTEST_DESELECT+=(
+ # some GC nonsense
+ tests/test_main.py::TestCallbacks::test_sign_data_from_callbacks
+ tests/test_main.py::TestCallbacks::test_sign_data_not_first_callback
+ )
+ ;;
+ esac
+
+ epytest
+}