python310Packages.curio: ignore flaky test

main
Sandro Jäckel 2 years ago
parent b034794ec0
commit 9547332964
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 3
      pkgs/development/python-modules/curio/default.nix

@ -26,9 +26,10 @@ buildPythonPackage rec {
disabledTests = [
"test_aside_basic" # times out
"test_write_timeout" # flaky, does not always time out
"test_aside_cancel" # fails because modifies PYTHONPATH and cant find pytest
"test_ssl_outgoing" # touches network
] ++ lib.optionals (stdenv.isDarwin) [
] ++ lib.optionals stdenv.isDarwin [
"test_unix_echo" # socket bind error on hydra when built with other packages
"test_unix_ssl_server" # socket bind error on hydra when built with other packages
];

Loading…
Cancel
Save