python3Packages.sanic: disable flaky tests

They fail at least on aarch64.

authored by Robert Schütz and committed by Jonathan Ringer f0442057 3eac120c

+6 -2
+6 -2
pkgs/development/python-modules/sanic/default.nix
··· 37 37 inherit doCheck; 38 38 39 39 disabledTests = [ 40 - "test_gunicorn" # No "examples" directory in pypi distribution. 41 - "test_zero_downtime" # No "examples.delayed_response.app" module in pypi distribution. 40 + # No "examples" directory in pypi distribution 41 + "test_gunicorn" 42 + "test_zero_downtime" 43 + # flaky 44 + "test_keep_alive_client_timeout" 45 + "test_reloader_live" 42 46 ]; 43 47 44 48 __darwinAllowLocalNetworking = true;