Merge pull request #84639 from jonringer/memcached-add-tests

memcached: add nixos tests to passthru
This commit is contained in:
Jörg Thalheim 2020-04-08 17:15:16 +01:00 committed by GitHub
commit b955b22b22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, cyrus_sasl, libevent}:
{stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
stdenv.mkDerivation rec {
version = "1.6.3";
@ -27,4 +27,7 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.coconnor ];
platforms = platforms.linux ++ platforms.darwin;
};
passthru.tests = {
smoke-tests = nixosTests.memcached;
};
}