mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 00:43:24 +00:00
1fc7d6ddb2
Those tests are flapping and redundant to some degree, as two configurations are tested in NixOps as well. So, let's deactivate them until the 1.0 release of nixpart, which has a more general approach for automatically partitioning NixOS installations. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
39 lines
1.5 KiB
Nix
39 lines
1.5 KiB
Nix
{ nixpkgs ? <nixpkgs>
|
|
, system ? builtins.currentSystem
|
|
, minimal ? false
|
|
}:
|
|
|
|
with import ../lib/testing.nix { inherit system minimal; };
|
|
|
|
{
|
|
avahi = makeTest (import ./avahi.nix);
|
|
bittorrent = makeTest (import ./bittorrent.nix);
|
|
firefox = makeTest (import ./firefox.nix);
|
|
firewall = makeTest (import ./firewall.nix);
|
|
installer = makeTests (import ./installer.nix);
|
|
efi-installer = makeTests (import ./efi-installer.nix);
|
|
ipv6 = makeTest (import ./ipv6.nix);
|
|
kde4 = makeTest (import ./kde4.nix);
|
|
#kexec = makeTest (import ./kexec.nix);
|
|
login = makeTest (import ./login.nix {});
|
|
latestKernel.login = makeTest (import ./login.nix ({ config, pkgs, ... }: { boot.kernelPackages = pkgs.linuxPackages_latest; }));
|
|
misc = makeTest (import ./misc.nix);
|
|
#mpich = makeTest (import ./mpich.nix);
|
|
mysql = makeTest (import ./mysql.nix);
|
|
mysql_replication = makeTest (import ./mysql-replication.nix);
|
|
nat = makeTest (import ./nat.nix);
|
|
nfs3 = makeTest (import ./nfs.nix { version = 3; });
|
|
#nfs4 = makeTest (import ./nfs.nix { version = 4; });
|
|
openssh = makeTest (import ./openssh.nix);
|
|
#partition = makeTest (import ./partition.nix);
|
|
printing = makeTest (import ./printing.nix);
|
|
proxy = makeTest (import ./proxy.nix);
|
|
quake3 = makeTest (import ./quake3.nix);
|
|
simple = makeTest (import ./simple.nix);
|
|
#subversion = makeTest (import ./subversion.nix);
|
|
tomcat = makeTest (import ./tomcat.nix);
|
|
#trac = makeTest (import ./trac.nix);
|
|
xfce = makeTest (import ./xfce.nix);
|
|
runInMachine.test = import ./run-in-machine.nix { inherit system; };
|
|
}
|