about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-04-02 10:58:43 +0000
committerAlyssa Ross <hi@alyssa.is>2021-04-04 12:07:38 +0000
commita95723fe00decf8ed79227d76cfcb981858f7e15 (patch)
tree41402567f28d83e883c8b1701740eec558e514a2 /nixpkgs/pkgs/servers
parent212e876ccb472b8c4e275d230a48ad00bacadf87 (diff)
downloadnixlib-a95723fe00decf8ed79227d76cfcb981858f7e15.tar
nixlib-a95723fe00decf8ed79227d76cfcb981858f7e15.tar.gz
nixlib-a95723fe00decf8ed79227d76cfcb981858f7e15.tar.bz2
nixlib-a95723fe00decf8ed79227d76cfcb981858f7e15.tar.lz
nixlib-a95723fe00decf8ed79227d76cfcb981858f7e15.tar.xz
nixlib-a95723fe00decf8ed79227d76cfcb981858f7e15.tar.zst
nixlib-a95723fe00decf8ed79227d76cfcb981858f7e15.zip
public-inbox: run tests
Diffstat (limited to 'nixpkgs/pkgs/servers')
-rw-r--r--nixpkgs/pkgs/servers/mail/public-inbox/default.nix23
1 files changed, 15 insertions, 8 deletions
diff --git a/nixpkgs/pkgs/servers/mail/public-inbox/default.nix b/nixpkgs/pkgs/servers/mail/public-inbox/default.nix
index affcb0e8b237..feee604db180 100644
--- a/nixpkgs/pkgs/servers/mail/public-inbox/default.nix
+++ b/nixpkgs/pkgs/servers/mail/public-inbox/default.nix
@@ -6,14 +6,21 @@
 
 let
 
-  # These tests would fail, and produce "Operation not permitted"
-  # errors from git, because they use git init --shared.  This tries
-  # to set the setgid bit, which isn't permitted inside build
-  # sandboxes.
-  #
-  # These tests were indentified with
-  #     grep -r shared t/
-  skippedTests = [ "convert-compact" "search" "v2writable" "www_listing" ];
+  skippedTests = [
+    # These tests would fail, and produce "Operation not permitted"
+    # errors from git, because they use git init --shared.  This tries
+    # to set the setgid bit, which isn't permitted inside build
+    # sandboxes.
+    #
+    # These tests were indentified with
+    #     grep -r shared t/
+    "convert-compact" "search" "v2writable" "www_listing"
+
+    # These tests use Email::MIME, and assume an older version than we
+    # have in Nixpkgs.  They can probably be re-enabled for
+    # public-inbox >= 1.5.0.
+    "filter_base" "filter_mirror" "mda"
+  ];
 
   testConditions = with lib;
     concatMapStringsSep " " (n: "! -name ${escapeShellArg n}.t") skippedTests;