From cd573cf6069fe6d4682d5f405ee84256d9ffb146 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Mon, 23 Feb 2026 19:11:10 -0800 Subject: [PATCH] python3Packages.jupytext: disable test that fails due to whitespace differences --- pkgs/development/python-modules/jupytext/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/jupytext/default.nix b/pkgs/development/python-modules/jupytext/default.nix index c4fc55b2bd62..e84ff2351ff3 100644 --- a/pkgs/development/python-modules/jupytext/default.nix +++ b/pkgs/development/python-modules/jupytext/default.nix @@ -108,7 +108,11 @@ buildPythonPackage rec { "tests/external" ]; - disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + disabledTests = [ + # Fails due to whitespace differences in the outputs + "test_async_and_sync_files_are_in_sync" + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ # requires access to trash "test_load_save_rename" ];