From 0556177ed5a1aabc13f640111714f66a1a0575b2 Mon Sep 17 00:00:00 2001 From: Nick Lewis Date: Mon, 1 Jun 2026 14:19:19 -0700 Subject: [PATCH] python3Packages.openfga-sdk: Fix tests on Python 3.12 --- pkgs/development/python-modules/openfga-sdk/default.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/openfga-sdk/default.nix b/pkgs/development/python-modules/openfga-sdk/default.nix index 5fe2308eb536..03470cbc19b5 100644 --- a/pkgs/development/python-modules/openfga-sdk/default.nix +++ b/pkgs/development/python-modules/openfga-sdk/default.nix @@ -41,15 +41,9 @@ buildPythonPackage rec { nativeCheckInputs = [ mock + pytest-asyncio pytest-cov-stub pytestCheckHook - ] - ++ lib.optionals (pythonAtLeast "3.13") [ pytest-asyncio ]; - - disabledTests = lib.optionals (pythonAtLeast "3.13") [ - # These fail due to a race condition in the test mocks - "test_client_batch_check_multiple_request" - "test_client_batch_check_multiple_request_fail" ]; meta = {