nixos/test: Port test driver to python

Thanks @blitz and @jtraue for help with implementing machine methods
This commit is contained in:
Jacek Galowicz
2019-09-06 09:25:22 +02:00
committed by Jacek Galowicz
parent d34465eeca
commit 3a28fefe7d
3 changed files with 1050 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
f: {
system ? builtins.currentSystem,
pkgs ? import ../.. { inherit system; config = {}; },
...
} @ args:
with import ../lib/testing-python.nix { inherit system pkgs; };
makeTest (if pkgs.lib.isFunction f then f (args // { inherit pkgs; inherit (pkgs) lib; }) else f)