aboutsummaryrefslogtreecommitdiffstats
path: root/atuin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'atuin.nix')
-rw-r--r--atuin.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/atuin.nix b/atuin.nix
index 262f5701..7a116b86 100644
--- a/atuin.nix
+++ b/atuin.nix
@@ -35,6 +35,12 @@ rustPlatform.buildRustPackage {
--zsh <($out/bin/atuin gen-completions -s zsh)
'';
+ # Additional flags passed to the cargo test binary, see `cargo test -- --help`
+ checkFlags = [
+ # Registration tests require a postgres server
+ "--skip=registration"
+ ];
+
meta = with lib; {
description = "Replacement for a shell history which records additional commands context with optional encrypted synchronization between machines";
homepage = "https://github.com/ellie/atuin";