From 86d2ccf412d47034be8ebc289abf01e34227975d Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 15 Apr 2022 20:29:31 +0200 Subject: [PATCH] python3Packages.path: disable racy test --- pkgs/development/python-modules/path/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/path/default.nix b/pkgs/development/python-modules/path/default.nix index 9e89231d9ce5..a22aa64e8b1e 100644 --- a/pkgs/development/python-modules/path/default.nix +++ b/pkgs/development/python-modules/path/default.nix @@ -32,6 +32,12 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = [ + # creates a file, checks when it was last accessed/modified + # AssertionError: assert 1650036414.0 == 1650036414.960688 + "test_utime" + ]; + pythonImportsCheck = [ "path" ];