upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/nix/module.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/module.nix')
-rw-r--r--nix/module.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/nix/module.nix b/nix/module.nix
index 126473d..23b1561 100644
--- a/nix/module.nix
+++ b/nix/module.nix
@@ -19,10 +19,15 @@ let
19 buildInputs = with pkgs; [ openssl ]; 19 buildInputs = with pkgs; [ openssl ];
20 20
21 # Skip tests that require git in PATH (sandboxing issue) 21 # Skip tests that require git in PATH (sandboxing issue)
22 # These tests run fine in dev environment and CI
22 checkFlags = [ 23 checkFlags = [
24 # Unit tests that spawn git subprocesses
23 "--skip=git::subprocess::tests::" 25 "--skip=git::subprocess::tests::"
24 "--skip=git::tests::" 26 "--skip=git::tests::"
25 "--skip=purgatory::helpers::tests::" 27 "--skip=purgatory::helpers::tests::"
28 # Integration tests that create git repos
29 "--skip=common::git_server::"
30 "--skip=common::purgatory_helpers::"
26 ]; 31 ];
27 }; 32 };
28 33