From 5cec48072d6ffadb46fe2e39b2c314f7683b3b78 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sun, 16 Jun 2024 17:57:41 +0200 Subject: [PATCH] python311Packages.python-utils: mark test_timeout_generator flaky on linux too --- pkgs/development/python-modules/python-utils/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/python-utils/default.nix b/pkgs/development/python-modules/python-utils/default.nix index a5b5537868c7..8fc1bcc15bcf 100644 --- a/pkgs/development/python-modules/python-utils/default.nix +++ b/pkgs/development/python-modules/python-utils/default.nix @@ -1,6 +1,5 @@ { lib, - stdenv, buildPythonPackage, fetchFromGitHub, loguru, @@ -45,8 +44,8 @@ buildPythonPackage rec { pytestFlagsArray = [ "_python_utils_tests" ]; - disabledTests = lib.optionals stdenv.isDarwin [ - # Flaky tests on darwin + disabledTests = [ + # Flaky tests "test_timeout_generator" ];