summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/search/meilisearch/default.nix
diff options
context:
space:
mode:
authorBenno Bielmeier <nix@bbenno.com>2022-08-24 21:02:24 +0200
committerYt <happysalada@proton.me>2022-08-24 22:00:26 -0400
commita4c43828e965ce6efcbe575e3f92cee276c516be (patch)
tree63aeb6867410bca0249c013a13b72a4f2642a239 /pkgs/servers/search/meilisearch/default.nix
parent312fd31a5827bd998771d212aa08753e77d628e2 (diff)
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.
Diffstat (limited to 'pkgs/servers/search/meilisearch/default.nix')
-rw-r--r--pkgs/servers/search/meilisearch/default.nix8
1 files 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;