notes: 2.3.0 -> 2.3.1 (#352950)
[NixPkgs.git] / nixos / tests / scaphandre.nix
blobf0a411748503b5d40a804b6b7bf104d052a8e932
1 import ./make-test-python.nix {
2   name = "scaphandre";
4   nodes = {
5     scaphandre = { pkgs, ... } : {
6       boot.kernelModules = [ "intel_rapl_common" ];
8       environment.systemPackages = [ pkgs.scaphandre ];
9     };
10   };
12   testScript = { nodes, ... } : ''
13     scaphandre.start()
14     scaphandre.wait_until_succeeds(
15         "scaphandre stdout -t 4",
16     )
17   '';