Merge pull request #320304 from pbsds/fix-python-utils-test_timeout_generator-1718553380

python311Packages.python-utils: mark test_timeout_generator flaky on linux too
This commit is contained in:
Peder Bergebakken Sundt 2024-06-19 02:32:38 +02:00 committed by GitHub
commit 5b142de3ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"
];