mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
Merge pull request #231304 from natsukium/python3Packages.websockify/fix-darwin
python3Packages.websockify: disabled a broken test on darwin
This commit is contained in:
commit
d514ad5180
@ -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"
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user