From b999c1f8a05397b7b03a72f3c06518c02fdda6cf Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Fri, 13 May 2022 13:13:44 -0500 Subject: [PATCH] twtxt: disable test_tweet_relative_datetime --- pkgs/applications/networking/twtxt/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/networking/twtxt/default.nix b/pkgs/applications/networking/twtxt/default.nix index 27420f8bd33..792c13aa23f 100644 --- a/pkgs/applications/networking/twtxt/default.nix +++ b/pkgs/applications/networking/twtxt/default.nix @@ -23,6 +23,11 @@ buildPythonApplication rec { checkInputs = [ pytestCheckHook tox ]; + disabledTests = [ + # Disable test using relative date and time + "test_tweet_relative_datetime" + ]; + meta = with lib; { description = "Decentralised, minimalist microblogging service for hackers"; homepage = "https://github.com/buckket/twtxt";