From a4c43828e965ce6efcbe575e3f92cee276c516be Mon Sep 17 00:00:00 2001 From: Benno Bielmeier Date: Wed, 24 Aug 2022 21:02:24 +0200 Subject: [PATCH] meilisearch: (Re-)enable nixos tests Tests where disabled in 8931b86 due to errors caused by API changes of meilisearch. Now as the tests are updated accordingly, they can be reenabled. --- pkgs/servers/search/meilisearch/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/search/meilisearch/default.nix b/pkgs/servers/search/meilisearch/default.nix index 7b83e1eb8e0a..9dca908a0773 100644 --- a/pkgs/servers/search/meilisearch/default.nix +++ b/pkgs/servers/search/meilisearch/default.nix @@ -23,11 +23,9 @@ rustPlatform.buildRustPackage { # Default features include mini dashboard which downloads something from the internet. buildNoDefaultFeatures = true; buildInputs = lib.optionals stdenv.isDarwin [ Security DiskArbitration Foundation ]; - # Test fail at the moment. - # > Test "create index" failed with error: "index wasn't created" - # passthru.tests = { - # meilisearch = nixosTests.meilisearch; - # }; + passthru.tests = { + meilisearch = nixosTests.meilisearch; + }; # Tests will try to compile with mini-dashboard features which downloads something from the internet. doCheck = false;