about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorMonson Shao <holymonson@gmail.com>2022-12-06 00:14:36 +0800
committerMonson Shao <holymonson@gmail.com>2022-12-06 18:35:52 +0800
commitf9badabc3c16aa2ad69d3997840846fe644bba38 (patch)
treed481d7b7fc39be3f385749f6c7e6e772ebab1fbf /pkgs/servers/http
parent8bc39a24bcef4d2aefebaa06b3ed75128599a262 (diff)
dufs: skip may-fail tests
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/dufs/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/servers/http/dufs/default.nix b/pkgs/servers/http/dufs/default.nix
index e162a42863a54..af02b7199610e 100644
--- a/pkgs/servers/http/dufs/default.nix
+++ b/pkgs/servers/http/dufs/default.nix
@@ -23,6 +23,11 @@ rustPlatform.buildRustPackage rec {
     Security
   ];
 
+  checkFlags = [
+    # tests depend on network interface, may fail with virtual IPs.
+    "--skip=validate_printed_urls"
+  ];
+
   meta = with lib; {
     description = "A file server that supports static serving, uploading, searching, accessing control, webdav";
     homepage = "https://github.com/sigoden/dufs";