Skip to content

Commit

Permalink
Disable server tests in the nix build (#1123)
Browse files Browse the repository at this point in the history
* Update deps used for the nix build

* Disable server tests in nix build
  • Loading branch information
arcuru committed Jul 28, 2023
1 parent c10ba68 commit 4d1e6bc
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
6 changes: 6 additions & 0 deletions atuin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
30 changes: 24 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit 4d1e6bc

@vercel
Copy link

@vercel vercel bot commented on 4d1e6bc Jul 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

atuin-docs – ./

atuin-docs-git-main-atuin.vercel.app
atuin-docs.vercel.app
atuin-docs-atuin.vercel.app

Please sign in to comment.