use unique names for tests
This commit is contained in:
parent
e42996ff61
commit
83e91e3a81
1 changed files with 4 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
peerWithoutUser = pkgs.nixosTest {
|
peerWithoutUser = pkgs.nixosTest {
|
||||||
name = "postgresql";
|
name = "postgresql-peerWithoutUser";
|
||||||
|
|
||||||
nodes.machine = { config, pkgs, ... }: {
|
nodes.machine = { config, pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
peerAuth = pkgs.nixosTest {
|
peerAuth = pkgs.nixosTest {
|
||||||
name = "postgresql";
|
name = "postgresql-peerAuth";
|
||||||
|
|
||||||
nodes.machine = { config, pkgs, ... }: {
|
nodes.machine = { config, pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -82,7 +82,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
tcpIPWithoutPasswordAuth = pkgs.nixosTest {
|
tcpIPWithoutPasswordAuth = pkgs.nixosTest {
|
||||||
name = "postgresql";
|
name = "postgresql-tcpIpWithoutPasswordAuth";
|
||||||
|
|
||||||
nodes.machine = { config, pkgs, ... }: {
|
nodes.machine = { config, pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -117,7 +117,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
tcpIPPasswordAuth = pkgs.nixosTest {
|
tcpIPPasswordAuth = pkgs.nixosTest {
|
||||||
name = "postgresql";
|
name = "postgresql-tcpIPPasswordAuth";
|
||||||
|
|
||||||
nodes.machine = { config, pkgs, ... }: {
|
nodes.machine = { config, pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue