From 4fee20e267be4f5758401c98098a20f1c146530d Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Mon, 4 Jan 2021 17:45:28 +0100 Subject: [PATCH] dovecot: add the dovecot NixOS test to passthru.tests While we already had some test we might as well add the test for that exact package to the tests attribute set. After all that should be what (primarily) tests dovecot. --- pkgs/servers/mail/dovecot/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix index 3e566f8aa5f..8d39c01478f 100644 --- a/pkgs/servers/mail/dovecot/default.nix +++ b/pkgs/servers/mail/dovecot/default.nix @@ -89,5 +89,6 @@ stdenv.mkDerivation rec { }; passthru.tests = { opensmtpd-interaction = nixosTests.opensmtpd; + inherit (nixosTests) dovecot; }; }