diff --git a/pkgs/development/python-modules/logutils/default.nix b/pkgs/development/python-modules/logutils/default.nix index e3480e9fe5d3..71ba14b499a1 100644 --- a/pkgs/development/python-modules/logutils/default.nix +++ b/pkgs/development/python-modules/logutils/default.nix @@ -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" ];