summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-07-20 23:22:44 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-07-21 22:35:29 +0200
commit2e572b45aecb475c9ad398b688aa4067f22c3dab (patch)
tree4f426685f475f9af85a57d8af757300ce42b51cd
parente422b378921ec198464f8fb886fa2a1f9ccb4210 (diff)
downloadnixpkgs-2e572b45aecb475c9ad398b688aa4067f22c3dab.tar
nixpkgs-2e572b45aecb475c9ad398b688aa4067f22c3dab.tar.gz
nixpkgs-2e572b45aecb475c9ad398b688aa4067f22c3dab.tar.bz2
nixpkgs-2e572b45aecb475c9ad398b688aa4067f22c3dab.tar.lz
nixpkgs-2e572b45aecb475c9ad398b688aa4067f22c3dab.tar.xz
nixpkgs-2e572b45aecb475c9ad398b688aa4067f22c3dab.tar.zst
nixpkgs-2e572b45aecb475c9ad398b688aa4067f22c3dab.zip
khal: disable timing based test
-rw-r--r--pkgs/applications/misc/khal/default.nix17
1 files changed, 12 insertions, 5 deletions
diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix
index 2b8002d4eb6..b6bb65a0bff 100644
--- a/pkgs/applications/misc/khal/default.nix
+++ b/pkgs/applications/misc/khal/default.nix
@@ -27,11 +27,6 @@ with python3.pkgs; buildPythonApplication rec {
     freezegun
   ];
   nativeBuildInputs = [ setuptools-scm sphinx sphinxcontrib_newsfeed installShellFiles ];
-  checkInputs = [
-    glibcLocales
-    pytestCheckHook
-  ];
-  LC_ALL = "en_US.UTF-8";
 
   postInstall = ''
     # shell completions
@@ -51,6 +46,18 @@ with python3.pkgs; buildPythonApplication rec {
 
   doCheck = !stdenv.isAarch64;
 
+  checkInputs = [
+    glibcLocales
+    pytestCheckHook
+  ];
+
+  LC_ALL = "en_US.UTF-8";
+
+  disabledTests = [
+    # timing based
+    "test_etag"
+  ];
+
   meta = with lib; {
     broken = stdenv.isDarwin;
     homepage = "http://lostpackets.de/khal/";