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.
This commit is contained in:
Benno Bielmeier 2022-08-24 21:02:24 +02:00 committed by Yt
parent 312fd31a58
commit a4c43828e9

View file

@ -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;