python313Packages.logutils: disable redis tests for all platforms

This commit is contained in:
Fabian Affolter
2025-08-07 12:00:35 +02:00
parent a967b2febf
commit 476c08beff
@@ -42,14 +42,17 @@ buildPythonPackage rec {
"test_hashandlers"
];
disabledTestPaths =
lib.optionals (stdenv.hostPlatform.isDarwin) [
# Exception: unable to connect to Redis server
"tests/test_redis.py"
]
++ lib.optionals (pythonAtLeast "3.13") [
"tests/test_dictconfig.py"
];
disabledTestPaths = [
# Disable redis tests on all systems for now
"tests/test_redis.py"
]
# lib.optionals (stdenv.hostPlatform.isDarwin) [
# # Exception: unable to connect to Redis server
# "tests/test_redis.py"
# ]
++ lib.optionals (pythonAtLeast "3.13") [
"tests/test_dictconfig.py"
];
pythonImportsCheck = [ "logutils" ];