Files
nixos-matrix-modules/tests/default.nix
T
oysteikt 56a3a5985f tests/synapse-{postgres,sqlite}: init
This commit ports some of the integrations tests from nixpkgs to be used for
the matrix-synapse-next module.
2026-06-22 15:55:29 +09:00

8 lines
262 B
Nix

{ nixpkgs, pkgs, matrix-lib, ... }:
{
nginx-pipeline-eval = pkgs.callPackage ./nginx-pipeline { inherit nixpkgs matrix-lib; };
synapse-postgres = pkgs.testers.runNixOSTest ./synapse-postgres;
synapse-sqlite = pkgs.testers.runNixOSTest ./synapse-sqlite;
}