khal: disable timing based test

This commit is contained in:
Sandro Jäckel 2022-07-20 23:22:44 +02:00 committed by Martin Weinelt
parent e422b37892
commit 2e572b45ae

View File

@ -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/";