python3Packages.sanic: disable flaky tests

They fail at least on aarch64.
This commit is contained in:
Robert Schütz 2021-05-12 14:49:57 +02:00 committed by Jonathan Ringer
parent 3eac120c3d
commit f044205741

View File

@ -37,8 +37,12 @@ buildPythonPackage rec {
inherit doCheck;
disabledTests = [
"test_gunicorn" # No "examples" directory in pypi distribution.
"test_zero_downtime" # No "examples.delayed_response.app" module in pypi distribution.
# No "examples" directory in pypi distribution
"test_gunicorn"
"test_zero_downtime"
# flaky
"test_keep_alive_client_timeout"
"test_reloader_live"
];
__darwinAllowLocalNetworking = true;