From cc32deeb91b124c356a6700cb4e14c2bc771b943 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 4 Aug 2023 15:08:40 +0200 Subject: [PATCH] python311Packages.pyatv: disable failing test on darwin --- pkgs/development/python-modules/pyatv/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/pyatv/default.nix b/pkgs/development/python-modules/pyatv/default.nix index 0851dc7034ff..5cddd154aa3f 100644 --- a/pkgs/development/python-modules/pyatv/default.nix +++ b/pkgs/development/python-modules/pyatv/default.nix @@ -19,6 +19,7 @@ , pythonOlder , requests , srptools +, stdenv , zeroconf }: @@ -87,6 +88,11 @@ buildPythonPackage rec { "--asyncio-mode=legacy" ]; + disabledTests = lib.optionals (stdenv.isDarwin) [ + # tests/protocols/raop/test_raop_functional.py::test_stream_retransmission[raop_properties2-2-True] - assert False + "test_stream_retransmission" + ]; + disabledTestPaths = [ # Test doesn't work in the sandbox "tests/protocols/companion/test_companion_auth.py"