about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-11-19 11:12:57 -0500
committerGitHub <noreply@github.com>2023-11-19 11:12:57 -0500
commit64f54e41d67961a8795c2941005eb35c3ed600b9 (patch)
tree6e01c931e30c2e391531338baeb66e057b765d43 /pkgs
parent8c260f8d57bb3633f2375fb085a66286963b2649 (diff)
parent4c2b555075a44bb53526621d39d9218277c626e9 (diff)
Merge pull request #268385 from figsoda/pipe-rename
pipe-rename: disable failing tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/pipe-rename/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/tools/misc/pipe-rename/default.nix b/pkgs/tools/misc/pipe-rename/default.nix
index 826d77815bc3d..dc8e545a7d8e4 100644
--- a/pkgs/tools/misc/pipe-rename/default.nix
+++ b/pkgs/tools/misc/pipe-rename/default.nix
@@ -13,6 +13,12 @@ rustPlatform.buildRustPackage rec {
 
   nativeCheckInputs = [ python3 ];
 
+  checkFlags = [
+    # tests are failing upstream
+    "--skip=test_dot"
+    "--skip=test_dotdot"
+  ];
+
   preCheck = ''
     patchShebangs tests/editors/env-editor.py
   '';