From 72588581ee4e1cc76dfc074afe356f18da2f65f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 1 Jun 2023 17:28:40 +0200 Subject: [PATCH] atuin: remove xvfb-run for tests not needed anymore --- pkgs/tools/misc/atuin/default.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pkgs/tools/misc/atuin/default.nix b/pkgs/tools/misc/atuin/default.nix index ee1968a7839f..b0c8f63a8c48 100644 --- a/pkgs/tools/misc/atuin/default.nix +++ b/pkgs/tools/misc/atuin/default.nix @@ -6,7 +6,6 @@ , libiconv , Security , SystemConfiguration -, xvfb-run , nixosTests }: @@ -38,16 +37,6 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/atuin gen-completions -s zsh) ''; - nativeCheckInputs = lib.optionals xvfb-run.meta.available [ - xvfb-run - ]; - - checkPhase = lib.optionalString xvfb-run.meta.available '' - runHook preCheck - xvfb-run cargo test - runHook postCheck - ''; - passthru.tests = { inherit (nixosTests) atuin; };