From e91da70b45818a8b5bed647b490e7ba48346a5f1 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 16 Apr 2022 14:17:06 +0200 Subject: [PATCH] python3Packages.astropy-extension-helpers: disable racy test https://github.com/astropy/extension-helpers/issues/43 --- .../python-modules/astropy-extension-helpers/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/astropy-extension-helpers/default.nix b/pkgs/development/python-modules/astropy-extension-helpers/default.nix index 90162d431ca..cb15acf8839 100644 --- a/pkgs/development/python-modules/astropy-extension-helpers/default.nix +++ b/pkgs/development/python-modules/astropy-extension-helpers/default.nix @@ -35,6 +35,11 @@ buildPythonPackage rec { "extension_helpers" ]; + disabledTests = [ + # https://github.com/astropy/extension-helpers/issues/43 + "test_write_if_different" + ]; + pythonImportsCheck = [ "extension_helpers" ];