mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
nixos/tests: move mysql tests to subfolder
This commit is contained in:
parent
5487e155d7
commit
8af9c97c0d
6 changed files with 8 additions and 8 deletions
|
@ -24,7 +24,6 @@ in
|
||||||
_3proxy = handleTest ./3proxy.nix {};
|
_3proxy = handleTest ./3proxy.nix {};
|
||||||
acme = handleTest ./acme.nix {};
|
acme = handleTest ./acme.nix {};
|
||||||
atd = handleTest ./atd.nix {};
|
atd = handleTest ./atd.nix {};
|
||||||
automysqlbackup = handleTest ./automysqlbackup.nix {};
|
|
||||||
avahi = handleTest ./avahi.nix {};
|
avahi = handleTest ./avahi.nix {};
|
||||||
babeld = handleTest ./babeld.nix {};
|
babeld = handleTest ./babeld.nix {};
|
||||||
bcachefs = handleTestOn ["x86_64-linux"] ./bcachefs.nix {}; # linux-4.18.2018.10.12 is unsupported on aarch64
|
bcachefs = handleTestOn ["x86_64-linux"] ./bcachefs.nix {}; # linux-4.18.2018.10.12 is unsupported on aarch64
|
||||||
|
@ -197,9 +196,10 @@ in
|
||||||
munin = handleTest ./munin.nix {};
|
munin = handleTest ./munin.nix {};
|
||||||
mutableUsers = handleTest ./mutable-users.nix {};
|
mutableUsers = handleTest ./mutable-users.nix {};
|
||||||
mxisd = handleTest ./mxisd.nix {};
|
mxisd = handleTest ./mxisd.nix {};
|
||||||
mysql = handleTest ./mysql.nix {};
|
mysql = handleTest ./mysql/mysql.nix {};
|
||||||
mysqlBackup = handleTest ./mysql-backup.nix {};
|
mysql-autobackup = handleTest ./mysql/mysql-autobackup.nix {};
|
||||||
mysqlReplication = handleTest ./mysql-replication.nix {};
|
mysql-backup = handleTest ./mysql/mysql-backup.nix {};
|
||||||
|
mysql-replication = handleTest ./mysql/mysql-replication.nix {};
|
||||||
nagios = handleTest ./nagios.nix {};
|
nagios = handleTest ./nagios.nix {};
|
||||||
nat.firewall = handleTest ./nat.nix { withFirewall = true; };
|
nat.firewall = handleTest ./nat.nix { withFirewall = true; };
|
||||||
nat.firewall-conntrack = handleTest ./nat.nix { withFirewall = true; withConntrackHelpers = true; };
|
nat.firewall-conntrack = handleTest ./nat.nix { withFirewall = true; withConntrackHelpers = true; };
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
import ./../make-test-python.nix ({ pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "automysqlbackup";
|
name = "automysqlbackup";
|
|
@ -1,5 +1,5 @@
|
||||||
# Test whether mysqlBackup option works
|
# Test whether mysqlBackup option works
|
||||||
import ./make-test-python.nix ({ pkgs, ... } : {
|
import ./../make-test-python.nix ({ pkgs, ... } : {
|
||||||
name = "mysql-backup";
|
name = "mysql-backup";
|
||||||
meta = with pkgs.stdenv.lib.maintainers; {
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||||||
maintainers = [ rvl ];
|
maintainers = [ rvl ];
|
|
@ -1,4 +1,4 @@
|
||||||
import ./make-test-python.nix ({ pkgs, ...} :
|
import ./../make-test-python.nix ({ pkgs, ...} :
|
||||||
|
|
||||||
let
|
let
|
||||||
replicateUser = "replicate";
|
replicateUser = "replicate";
|
|
@ -1,4 +1,4 @@
|
||||||
import ./make-test-python.nix ({ pkgs, ...} : {
|
import ./../make-test-python.nix ({ pkgs, ...} : {
|
||||||
name = "mysql";
|
name = "mysql";
|
||||||
meta = with pkgs.stdenv.lib.maintainers; {
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||||||
maintainers = [ eelco shlevy ];
|
maintainers = [ eelco shlevy ];
|
Loading…
Add table
Add a link
Reference in a new issue