From 92ed89f49e3b8cd874e95d9a7d35c2fb78f9e769 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sat, 10 May 2025 20:58:09 -0700 Subject: [PATCH] python3Packages.ax-platform: disable flaky test --- pkgs/development/python-modules/ax-platform/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/ax-platform/default.nix b/pkgs/development/python-modules/ax-platform/default.nix index 80b8990474e6..e7ba1895624e 100644 --- a/pkgs/development/python-modules/ax-platform/default.nix +++ b/pkgs/development/python-modules/ax-platform/default.nix @@ -18,6 +18,7 @@ setuptools-scm, setuptools, sqlalchemy, + stdenvNoCC, tabulate, typeguard, yappi, @@ -102,6 +103,10 @@ buildPythonPackage rec { "test_gen" # "use MIN or MAX" does not match "Both `metric_aggregation` and `criterion` must be `ReductionCriterion` "test_user_input_error" + ] + ++ lib.optionals stdenvNoCC.hostPlatform.isDarwin [ + # flaky on x86 + "test_gen_with_expanded_parameter_space" ]; pythonImportsCheck = [ "ax" ];