python3Packages.httplib2: disable failing test on darwin

This commit is contained in:
Malo Bourgon 2022-02-28 10:45:53 -08:00
parent 0ddce89248
commit b9ed8525d9

View File

@ -52,7 +52,9 @@ buildPythonPackage rec {
# ValueError: Unable to load PEM file.
# https://github.com/httplib2/httplib2/issues/192#issuecomment-993165140
"test_client_cert_password_verified"
] ++ lib.optionals (stdenv.isDarwin) [
] ++ lib.optionals stdenv.isDarwin [
# fails with "ConnectionResetError: [Errno 54] Connection reset by peer"
"test_connection_close"
# fails with HTTP 408 Request Timeout, instead of expected 200 OK
"test_timeout_subsequent"
];