From e53c7c9dd61fb6a4f80dc78e7bcbbd23172812c2 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 29 Jan 2024 12:44:06 +0000 Subject: chore: disable nix tests (#1646) For a few reasons 1. This step is really, really slow. I don't think there's sufficient value in a slow CI step to keep it 2. Whenever we add an integration test it needs to be added to the ignore list. I want to keep friction on adding such tests as low as is possible. 3. We already run tests in a bunch of places, so I don't think this is needed Ref: #1123 --- atuin.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/atuin.nix b/atuin.nix index a233e985..f8288b19 100644 --- a/atuin.nix +++ b/atuin.nix @@ -36,12 +36,7 @@ rustPlatform.buildRustPackage { --zsh <($out/bin/atuin gen-completions -s zsh) ''; - # Additional flags passed to the cargo test binary, see `cargo test -- --help` - checkFlags = [ - # Sync tests require a postgres server - "--skip=sync" - "--skip=registration" - ]; + doCheck = false; meta = with lib; { description = "Replacement for a shell history which records additional commands context with optional encrypted synchronization between machines"; -- cgit v1.3.1