mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
python310Packages.trio-websocket: fix/disable tests on darwin
This commit is contained in:
parent
1b130c8aba
commit
658c049602
@ -1,4 +1,5 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, exceptiongroup
|
||||
@ -33,6 +34,19 @@ buildPythonPackage rec {
|
||||
trustme
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals stdenv.isDarwin [
|
||||
# Failed: DID NOT RAISE <class 'ValueError'>
|
||||
"test_finalization_dropped_exception"
|
||||
# Timing related
|
||||
"test_client_close_timeout"
|
||||
"test_cm_exit_with_pending_messages"
|
||||
"test_server_close_timeout"
|
||||
"test_server_handler_exit"
|
||||
"test_server_open_timeout"
|
||||
];
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
pythonImportsCheck = [ "trio_websocket" ];
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user