From ed71d169badcb759a041f7016512f9a4d263fd2d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 16 Apr 2024 16:47:53 +0200 Subject: [PATCH] python312Packages.betterproto: disable flaky test --- pkgs/development/python-modules/betterproto/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/betterproto/default.nix b/pkgs/development/python-modules/betterproto/default.nix index a35b24999230..28e810b74292 100644 --- a/pkgs/development/python-modules/betterproto/default.nix +++ b/pkgs/development/python-modules/betterproto/default.nix @@ -71,7 +71,11 @@ buildPythonPackage rec { "tests/inputs/oneof/test_oneof.py" ]; - disabledTests = [ "test_pydantic_no_value" ]; + disabledTests = [ + "test_pydantic_no_value" + # Test is flaky + "test_binary_compatibility" + ]; meta = with lib; { description = "Code generator & library for Protobuf 3 and async gRPC";