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-11-04 23:50:27 +01:00
committed by Jacek Galowicz
parent d34465eeca
commit 3a28fefe7d
3 changed files with 1050 additions and 0 deletions
+9
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)