From 0348aae6918c12f36eb3e65ae9d0acc6606ed397 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Thu, 2 Jul 2026 15:47:08 +0200 Subject: [PATCH] python3Packages.arviz-plots: disable flaky test discovered in https://github.com/NixOS/nixpkgs/pull/528833#issuecomment-4865692485 --- pkgs/development/python-modules/arviz-plots/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/arviz-plots/default.nix b/pkgs/development/python-modules/arviz-plots/default.nix index 124dfb4ae34e..315287e2b741 100644 --- a/pkgs/development/python-modules/arviz-plots/default.nix +++ b/pkgs/development/python-modules/arviz-plots/default.nix @@ -112,6 +112,11 @@ buildPythonPackage (finalAttrs: { webcolors ]; + disabledTests = [ + # flaky, timeout + "test_plot_trace_dist" + ]; + meta = { description = "ArviZ modular plotting"; homepage = "https://github.com/arviz-devs/arviz-plots";