summary refs log tree commit diff
path: root/nixos/tests/munin.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-04-14 14:02:44 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-04-14 14:02:44 +0200
commitabe218950c779fd1c98034356d3b324d66a0d30a (patch)
tree13d9cd800477089920e53ad51795b53f2fb97535 /nixos/tests/munin.nix
parent753639e548b32c7afd642e8a9823f6b4205330b6 (diff)
downloadnixpkgs-abe218950c779fd1c98034356d3b324d66a0d30a.tar
nixpkgs-abe218950c779fd1c98034356d3b324d66a0d30a.tar.gz
nixpkgs-abe218950c779fd1c98034356d3b324d66a0d30a.tar.bz2
nixpkgs-abe218950c779fd1c98034356d3b324d66a0d30a.tar.lz
nixpkgs-abe218950c779fd1c98034356d3b324d66a0d30a.tar.xz
nixpkgs-abe218950c779fd1c98034356d3b324d66a0d30a.tar.zst
nixpkgs-abe218950c779fd1c98034356d3b324d66a0d30a.zip
Make it easier to run the tests
You can now run a test in the nixos/tests directory directly using
nix-build, e.g.

  $ nix-build '<nixos/tests/login.nix>' -A test

This gets rid of having to add the test to nixos/tests/default.nix.
(Of course, you still need to add it to nixos/release.nix if you want
Hydra to run the test.)
Diffstat (limited to 'nixos/tests/munin.nix')
-rw-r--r--nixos/tests/munin.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/nixos/tests/munin.nix b/nixos/tests/munin.nix
index 66ae1c0d87f..acc4b949ab5 100644
--- a/nixos/tests/munin.nix
+++ b/nixos/tests/munin.nix
@@ -1,13 +1,12 @@
-{ pkgs, ... }:
-
 # This test runs basic munin setup with node and cron job running on the same
 # machine.
 
-{
-  nodes = { 
+import ./make-test.nix {
+
+  nodes = {
     one =
       { config, pkgs, ... }:
-        { 
+        {
           services = {
            munin-node.enable = true;
            munin-cron = {
@@ -20,10 +19,10 @@
           };
         };
     };
-  
+
   testScript = ''
     startAll;
-  
+
     $one->waitForUnit("munin-node.service");
     $one->waitForFile("/var/lib/munin/one/one-uptime-uptime-g.rrd");
     $one->waitForFile("/var/www/munin/one/index.html");