summary refs log tree commit diff
diff options
context:
space:
mode:
authorSumner Evans <me@sumnerevans.com>2021-09-23 08:23:00 -0600
committerSumner Evans <me@sumnerevans.com>2021-09-23 08:23:00 -0600
commita1efffc3836fd3578fdc61b8352e27244953cfd3 (patch)
tree38dddb2864afe7e7f220c9bc47fa95e4ca08a0ef
parentc199b9c16496e7f8e9670349ec03b022c6e2f052 (diff)
downloadnixpkgs-a1efffc3836fd3578fdc61b8352e27244953cfd3.tar
nixpkgs-a1efffc3836fd3578fdc61b8352e27244953cfd3.tar.gz
nixpkgs-a1efffc3836fd3578fdc61b8352e27244953cfd3.tar.bz2
nixpkgs-a1efffc3836fd3578fdc61b8352e27244953cfd3.tar.lz
nixpkgs-a1efffc3836fd3578fdc61b8352e27244953cfd3.tar.xz
nixpkgs-a1efffc3836fd3578fdc61b8352e27244953cfd3.tar.zst
nixpkgs-a1efffc3836fd3578fdc61b8352e27244953cfd3.zip
xandikos: disable failing tests
-rw-r--r--pkgs/servers/xandikos/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/servers/xandikos/default.nix b/pkgs/servers/xandikos/default.nix
index acf96d008f7..4c8ad7f89b7 100644
--- a/pkgs/servers/xandikos/default.nix
+++ b/pkgs/servers/xandikos/default.nix
@@ -27,6 +27,14 @@ python3Packages.buildPythonApplication rec {
 
   passthru.tests.xandikos = nixosTests.xandikos;
 
+  checkInputs = with python3Packages; [ pytestCheckHook ];
+  disabledTests = [
+    # these tests are failing due to the following error:
+    # TypeError: expected str, bytes or os.PathLike object, not int
+    "test_iter_with_etag"
+    "test_iter_with_etag_missing_uid"
+  ];
+
   meta = with lib; {
     description = "Lightweight CalDAV/CardDAV server";
     homepage = "https://github.com/jelmer/xandikos";