summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-01-29 12:44:06 +0000
committerGitHub <noreply@github.com>2024-01-29 12:44:06 +0000
commite53c7c9dd61fb6a4f80dc78e7bcbbd23172812c2 (patch)
treef163b8a4a1fb1d3d3c88c1f6583bfb7d51354a2f
parentc56f8ff736b8369b9b5cb3bdb42718396247f212 (diff)
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
-rw-r--r--atuin.nix7
1 files changed, 1 insertions, 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";