From 588ee27de72cb2d327df8c00d6e09597f9f14d42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 14 Jun 2025 20:33:06 -0700 Subject: [PATCH] python3Packages.coverage: format --- .../python-modules/coverage/default.nix | 38 ++++++++++--------- 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/pkgs/development/python-modules/coverage/default.nix b/pkgs/development/python-modules/coverage/default.nix index 2d3eb1d0dc1e..500fca210a17 100644 --- a/pkgs/development/python-modules/coverage/default.nix +++ b/pkgs/development/python-modules/coverage/default.nix @@ -52,24 +52,26 @@ buildPythonPackage rec { rm -r coverage ''; - disabledTests = [ - "test_all_our_source_files" - "test_doctest" - "test_files_up_one_level" - "test_get_encoded_zip_files" - "test_metadata" - "test_more_metadata" - "test_multi" - "test_no_duplicate_packages" - "test_xdist_sys_path_nuttiness_is_fixed" - "test_zipfile" - ] ++ lib.optionals (isPy312 && stdenv.hostPlatform.system == "x86_64-darwin") [ - # substring that may not be in string is part of the pytest output hash, which appears in the string - "test_nothing_specified" - "test_omit" - "test_omit_2" - "test_omit_as_string" - ]; + disabledTests = + [ + "test_all_our_source_files" + "test_doctest" + "test_files_up_one_level" + "test_get_encoded_zip_files" + "test_metadata" + "test_more_metadata" + "test_multi" + "test_no_duplicate_packages" + "test_xdist_sys_path_nuttiness_is_fixed" + "test_zipfile" + ] + ++ lib.optionals (isPy312 && stdenv.hostPlatform.system == "x86_64-darwin") [ + # substring that may not be in string is part of the pytest output hash, which appears in the string + "test_nothing_specified" + "test_omit" + "test_omit_2" + "test_omit_as_string" + ]; disabledTestPaths = [ "tests/test_debug.py"