tdarr{,-node,-server}: add nixosTest to passthru.tests

This commit is contained in:
Peder Bergebakken Sundt 2026-06-29 13:48:56 +02:00
commit cb497649af
2 changed files with 3 additions and 0 deletions

View file

@ -18,6 +18,7 @@ symlinkJoin {
passthru = {
server = tdarr-server;
node = tdarr-node;
tests = tdarr-server.tests or { } // tdarr-node.tests or { };
};
meta = {

View file

@ -25,6 +25,7 @@
perl,
apprise,
openssl,
nixosTests,
}:
{
pname,
@ -199,6 +200,7 @@ stdenv.mkDerivation (finalAttrs: {
command = [ ./update-hashes.sh ];
supportedFeatures = [ "commit" ];
};
tests.nixos = nixosTests.tdarr;
}
// passthru;