mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #84639 from jonringer/memcached-add-tests
memcached: add nixos tests to passthru
This commit is contained in:
commit
b955b22b22
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue