python3Packages.websockify: disabled a broken test on darwin

This commit is contained in:
natsukium 2023-05-11 23:33:37 +09:00
parent 4579dfb9ce
commit ed99c08d79
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, jwcrypto
@ -36,6 +37,12 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals stdenv.isDarwin [
# this test failed on macos
# https://github.com/novnc/websockify/issues/552
"test_socket_set_keepalive_options"
];
pythonImportsCheck = [
"websockify"
];