From 1eb2fd13aaec9f978cf43b8ce05b9d842cbd30ab Mon Sep 17 00:00:00 2001 From: "Robert T. McGibbon" Date: Thu, 13 May 2021 12:37:35 -0400 Subject: [PATCH] python3Packages.csvw: fix darwin --- pkgs/development/python-modules/csvw/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/csvw/default.nix b/pkgs/development/python-modules/csvw/default.nix index 3df013e7599..27f3f291113 100644 --- a/pkgs/development/python-modules/csvw/default.nix +++ b/pkgs/development/python-modules/csvw/default.nix @@ -42,6 +42,12 @@ buildPythonPackage rec { pytest-mock ]; + disabledTests = [ + # this test is flaky on darwin because it depends on the resolution of filesystem mtimes + # https://github.com/cldf/csvw/blob/45584ad63ff3002a9b3a8073607c1847c5cbac58/tests/test_db.py#L257 + "test_write_file_exists" + ]; + meta = with lib; { description = "CSV on the Web"; homepage = "https://github.com/cldf/csvw";