From 14d21edba6efa39613b959360abe5c0d7aa0fd91 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 6 May 2024 21:18:59 +0200 Subject: [PATCH] python312Packages.validator-collection: disable failing tests --- .../python-modules/validator-collection/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/python-modules/validator-collection/default.nix b/pkgs/development/python-modules/validator-collection/default.nix index 8625956d7754..60cc3c9c6f5e 100644 --- a/pkgs/development/python-modules/validator-collection/default.nix +++ b/pkgs/development/python-modules/validator-collection/default.nix @@ -135,6 +135,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "validator_collection" ]; + disabledTests = [ + # Issues with fake filesystem /var/data + "test_writeable" + "test_executable" + "test_readable" + "test_is_readable" + ]; + meta = with lib; { description = "Python library of 60+ commonly-used validator functions"; homepage = "https://github.com/insightindustry/validator-collection/";