From 16d75bb45fc633ecfb1333b4581e831a084404bb Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 8 Jan 2026 01:53:07 +0100 Subject: [PATCH] python314Packages.b2sdk: disable failing test --- pkgs/development/python-modules/b2sdk/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/b2sdk/default.nix b/pkgs/development/python-modules/b2sdk/default.nix index 25d7af265d13..ba6469bfdc56 100644 --- a/pkgs/development/python-modules/b2sdk/default.nix +++ b/pkgs/development/python-modules/b2sdk/default.nix @@ -1,17 +1,16 @@ { lib, - stdenv, buildPythonPackage, fetchFromGitHub, logfury, annotated-types, packaging, pdm-backend, - pyfakefs, pytest-lazy-fixtures, pytest-mock, pytest-timeout, pytestCheckHook, + pythonAtLeast, pythonOlder, requests, responses, @@ -54,6 +53,12 @@ buildPythonPackage rec { "test/unit" ]; + disabledTests = lib.optionals (pythonAtLeast "3.14") [ + # - 'could not be accessed (no permissions to read?)', + # + 'could not be accessed (broken symlink?)', + "test_dir_without_exec_permission" + ]; + pythonImportsCheck = [ "b2sdk" ]; meta = {