forked from mirrors/nixpkgs
nixos/tests: Add names
This commit is contained in:
parent
0af6e6b0e5
commit
e260018f9c
|
@ -1,5 +1,6 @@
|
|||
import ./make-test-python.nix (
|
||||
{
|
||||
name = "corerad";
|
||||
nodes = {
|
||||
router = {config, pkgs, ...}: {
|
||||
config = {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import ./make-test-python.nix ({ pkgs, ... }: {
|
||||
name = "ghostunnel";
|
||||
nodes = {
|
||||
backend = { pkgs, ... }: {
|
||||
services.nginx.enable = true;
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
import ../make-test-python.nix {
|
||||
name = "lorri";
|
||||
|
||||
nodes.machine = { pkgs, ... }: {
|
||||
imports = [ ../../modules/profiles/minimal.nix ];
|
||||
environment.systemPackages = [ pkgs.lorri ];
|
||||
|
|
|
@ -7,6 +7,8 @@ with pkgs.lib;
|
|||
let
|
||||
matomoTest = package:
|
||||
makeTest {
|
||||
name = "matomo";
|
||||
|
||||
nodes.machine = { config, pkgs, ... }: {
|
||||
services.matomo = {
|
||||
package = package;
|
||||
|
|
|
@ -3,6 +3,8 @@ import ../make-test-python.nix ({ pkgs, ... }:
|
|||
name = "conduit";
|
||||
in
|
||||
{
|
||||
name = "matrix-conduit";
|
||||
|
||||
nodes = {
|
||||
conduit = args: {
|
||||
services.matrix-conduit = {
|
||||
|
|
|
@ -19,6 +19,7 @@ let
|
|||
});
|
||||
|
||||
testLegacyNetwork = { nixopsPkg }: pkgs.nixosTest ({
|
||||
name = "nixops-legacy-network";
|
||||
nodes = {
|
||||
deployer = { config, lib, nodes, pkgs, ... }: {
|
||||
imports = [ ../../modules/installer/cd-dvd/channel.nix ];
|
||||
|
|
|
@ -2,6 +2,7 @@ let
|
|||
name = "pam";
|
||||
in
|
||||
import ../make-test-python.nix ({ pkgs, ... }: {
|
||||
name = "pam-file-contents";
|
||||
|
||||
nodes.machine = { ... }: {
|
||||
imports = [ ../../modules/profiles/minimal.nix ];
|
||||
|
|
|
@ -5,6 +5,8 @@ import ./make-test-python.nix (
|
|||
mode = "0640";
|
||||
};
|
||||
in {
|
||||
name = "pppd";
|
||||
|
||||
nodes = {
|
||||
server = {config, pkgs, ...}: {
|
||||
config = {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
import ./make-test-python.nix {
|
||||
name = "thelounge";
|
||||
|
||||
nodes = {
|
||||
private = { config, pkgs, ... }: {
|
||||
services.thelounge = {
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
import ./make-test-python.nix (
|
||||
{
|
||||
name = "zrepl";
|
||||
|
||||
nodes.host = {config, pkgs, ...}: {
|
||||
config = {
|
||||
# Prerequisites for ZFS and tests.
|
||||
|
|
Loading…
Reference in a new issue