From b51505ab71585f9938ebae51f11f4abbef8fedb5 Mon Sep 17 00:00:00 2001 From: Harinn Date: Sun, 10 May 2026 13:14:08 +0700 Subject: [PATCH] python3Packages.qcs-api-client-common: skip test_refresh_interceptor on python 3.14 --- .../python-modules/qcs-api-client-common/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/qcs-api-client-common/default.nix b/pkgs/development/python-modules/qcs-api-client-common/default.nix index d241f7d80576..1b5213b2a952 100644 --- a/pkgs/development/python-modules/qcs-api-client-common/default.nix +++ b/pkgs/development/python-modules/qcs-api-client-common/default.nix @@ -9,6 +9,7 @@ pytest-asyncio, pytest-mock, pytestCheckHook, + pythonAtLeast, rustc, rustPlatform, syrupy, @@ -57,6 +58,11 @@ buildPythonPackage rec { syrupy ]; + disabledTests = lib.optionals (pythonAtLeast "3.14") [ + # asyncio.Future() in sync fixture has no implicit event loop on 3.14 + "test_refresh_interceptor" + ]; + meta = { changelog = "https://github.com/rigetti/qcs-api-client-rust/blob/${src.tag}/qcs-api-client-common/CHANGELOG-py.md"; description = "Contains core QCS client functionality and middleware implementations";