From 5f7c43320c6559972104f74c5ba495cdbf91f608 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 28 Feb 2026 21:28:35 +0000 Subject: [PATCH 1/2] python3Packages.tempest: 46.0.0 -> 46.1.1 --- pkgs/development/python-modules/tempest/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tempest/default.nix b/pkgs/development/python-modules/tempest/default.nix index b5050fa94bb6..c3fe3ad2cfbd 100644 --- a/pkgs/development/python-modules/tempest/default.nix +++ b/pkgs/development/python-modules/tempest/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pname = "tempest"; - version = "46.0.0"; + version = "46.1.1"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-ddm1OE7BDwDM4T9GIB0+qK8WvU/+aC+FBIGWDm3ObHM="; + hash = "sha256-E61jqj0Wy1f81ackoFnnEZI2UCw70YIGYxQA1ME++xU="; }; postPatch = '' @@ -88,6 +88,11 @@ buildPythonPackage rec { chmod +x bin/* stestr --test-path tempest/tests run -e <(echo " + tempest.tests.common.test_concurrency.TestConcurrency.test_run_concurrent_tasks_dict_return_values + tempest.tests.common.test_concurrency.TestConcurrency.test_run_concurrent_tasks_multiple_workers + tempest.tests.common.test_concurrency.TestConcurrency.test_run_concurrent_tasks_single_process + tempest.tests.common.test_concurrency.TestConcurrency.test_run_concurrent_tasks_success + tempest.tests.common.test_concurrency.TestConcurrency.test_run_concurrent_tasks_with_exception tempest.tests.lib.cli.test_execute.TestExecute.test_execute_with_prefix ") ''; From 3a3b88407b01ba8bdb1ccba529b0dacfccf08693 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 1 Mar 2026 00:57:17 +0100 Subject: [PATCH 2/2] python313Packages.dogpile-cache: speed up test execution, ignore more flaky tests Following upstream https://github.com/sqlalchemy/dogpile.cache/blob/rel_1_5_0/pyproject.toml#L68 --- .../python-modules/dogpile-cache/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/dogpile-cache/default.nix b/pkgs/development/python-modules/dogpile-cache/default.nix index a68fcad4bdb3..ebea5ee74068 100644 --- a/pkgs/development/python-modules/dogpile-cache/default.nix +++ b/pkgs/development/python-modules/dogpile-cache/default.nix @@ -3,6 +3,7 @@ buildPythonPackage, fetchPypi, setuptools, + pytest-xdist, pytestCheckHook, mako, decorator, @@ -31,8 +32,14 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ - pytestCheckHook mako + pytest-xdist + pytestCheckHook + ]; + + disabledTestPaths = lib.optionals stdenv.hostPlatform.isLinux [ + # flaky + "tests/cache/test_dbm_backend.py" ]; disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ @@ -44,6 +51,8 @@ buildPythonPackage rec { "test_get_value_plus_created_registry_safe_cache_slow" "test_get_value_plus_created_registry_unsafe_cache" "test_quick" + "test_region_set_get_value" + "test_region_set_multiple_values" "test_return_while_in_progress" "test_slow" ];