python312Packages.aioxmpp: disable failing tests on Python 3.12

Upstream is archived
This commit is contained in:
Fabian Affolter
2024-05-23 12:19:34 +02:00
parent c4bfea54ca
commit 79cba4fa19
@@ -12,6 +12,7 @@
pyasn1,
pyopenssl,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
pythonRelaxDepsHook,
pytz,
@@ -72,6 +73,17 @@ buildPythonPackage rec {
disabledTests = [
# AttributeError: 'zoneinfo.ZoneInfo' object has no attribute 'normalize'
"test_convert_field_datetime_default_locale"
] ++ lib.optionals (pythonAtLeast "3.12") [
# asyncio issues
"test_is_abstract"
"Testbackground"
"TestCapturingXSO"
"Testcheck_x509"
"TestClient"
"TestIntegerType"
"TestStanzaStream"
"TestStanzaToken"
"TestXMLStream"
];
meta = {