From 427545645623e496f9215f1a6c8d4fbfe068332b Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Dec 2022 23:51:22 -0500 Subject: [PATCH 1/2] eureka-ideas: enable cargo parallel tests with nextest --- pkgs/applications/misc/eureka-ideas/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/eureka-ideas/default.nix b/pkgs/applications/misc/eureka-ideas/default.nix index ee15f31632cb..45e36010906b 100644 --- a/pkgs/applications/misc/eureka-ideas/default.nix +++ b/pkgs/applications/misc/eureka-ideas/default.nix @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec { Security ]; - dontUseCargoParallelTests = true; + useNextest = true; meta = with lib; { description = "CLI tool to input and store your ideas without leaving the terminal"; From a1bf5b35153a9a3c8468c0031ee1d2976096c5fe Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Dec 2022 23:54:00 -0500 Subject: [PATCH 2/2] castor: enable parallels tests with nextest --- pkgs/applications/networking/browsers/castor/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/castor/default.nix b/pkgs/applications/networking/browsers/castor/default.nix index 5a0a7f0d215b..6a898fb0c95d 100644 --- a/pkgs/applications/networking/browsers/castor/default.nix +++ b/pkgs/applications/networking/browsers/castor/default.nix @@ -40,8 +40,7 @@ rustPlatform.buildRustPackage rec { postInstall = "make PREFIX=$out copy-data"; - # Sometimes tests fail when run in parallel - dontUseCargoParallelThreads = true; + useNextest = true; meta = with lib; { description = "A graphical client for plain-text protocols written in Rust with GTK. It currently supports the Gemini, Gopher and Finger protocols";