pythonPackages.httpretty: disable 2 flaky tests

intermittently failing on all platforms
This commit is contained in:
Renaud 2019-05-16 14:41:48 +02:00 committed by GitHub
parent ac3b216a8b
commit 9ee1763cb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,11 @@ buildPythonPackage rec {
__darwinAllowLocalNetworking = true;
NOSE_EXCLUDE = stdenv.lib.optionalString (stdenv.isAarch64) "tests.functional.test_httplib2.test_callback_response";
# Those flaky tests are failing intermittently on all platforms
NOSE_EXCLUDE = stdenv.lib.concatStringsSep "," [
"tests.functional.test_httplib2.test_callback_response"
"tests.functional.test_requests.test_streaming_responses"
];
meta = with stdenv.lib; {
homepage = "https://httpretty.readthedocs.org/";