python3Packages.httplib2: disable test_timeout_subsequent on darwin
This commit is contained in:
parent
ca65d6f7d2
commit
21294b470c
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, isPy27
|
||||
|
@ -44,9 +45,12 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
pytestFlagsArray = [ "--ignore python2" ];
|
||||
disabledTests = lib.optionals (stdenv.isDarwin) [
|
||||
# fails with HTTP 408 Request Timeout, instead of expected 200 OK
|
||||
"test_timeout_subsequent"
|
||||
];
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
pytestFlagsArray = [ "--ignore python2" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A comprehensive HTTP client library";
|
||||
|
|
Loading…
Reference in a new issue