mediawiki: Expose test variants individually

This fixes `nix-build -A mediawiki.tests`, which does not seem to
recurse into nested attribute sets, but instead returns.
This commit is contained in:
Martin Weinelt 2023-04-04 12:38:31 +02:00
parent 04e8e10104
commit 47428f1a16
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -29,7 +29,9 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
passthru.tests.mediawiki = nixosTests.mediawiki;
passthru.tests = {
inherit (nixosTests.mediawiki) mysql postgresql;
};
meta = with lib; {
description = "The collaborative editing software that runs Wikipedia";