python313Packages.logutils: disable redis tests for all platforms
This commit is contained in:
@@ -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" ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user