aboutsummaryrefslogtreecommitdiffstats
path: root/atuin.nix
diff options
context:
space:
mode:
authorPatrick Jackson <patrick@jackson.dev>2023-07-28 00:49:42 -0700
committerGitHub <noreply@github.com>2023-07-28 08:49:42 +0100
commit4d1e6bc8fc378fa0ff428c610703cf56f9cbfd4e (patch)
treecb73faf51de86c1b0f97bd162a2ef70be57d2bca /atuin.nix
parentsome simple server tests (#1096) (diff)
downloadatuin-4d1e6bc8fc378fa0ff428c610703cf56f9cbfd4e.zip
Disable server tests in the nix build (#1123)
* Update deps used for the nix build * Disable server tests in nix build
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";