python312Packages.mobly: disable failing tests on darwin (#353181)

This commit is contained in:
Martin Weinelt
2024-11-03 02:11:16 +01:00
committed by GitHub
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
@@ -47,6 +48,13 @@ buildPythonPackage rec {
pytz
];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# cannot access /usr/bin/pgrep from the sandbox
"test_stop_standing_subproc"
"test_stop_standing_subproc_and_descendants"
"test_stop_standing_subproc_without_pipe"
];
__darwinAllowLocalNetworking = true;
meta = with lib; {