2012-03-02 12:38:22 +00:00
|
|
|
{ system ? builtins.currentSystem
|
2018-11-11 17:41:11 +09:00
|
|
|
, config ? {}
|
2010-10-21 22:50:12 +00:00
|
|
|
, networkExpr
|
|
|
|
}:
|
|
|
|
|
2011-04-27 13:01:42 +00:00
|
|
|
let nodes = import networkExpr; in
|
|
|
|
|
2020-02-15 18:49:18 +01:00
|
|
|
with import ../../../../lib/testing-python.nix {
|
2018-11-11 17:41:11 +09:00
|
|
|
inherit system;
|
2018-11-23 13:43:47 +01:00
|
|
|
pkgs = import ../../../../.. { inherit system config; };
|
2018-11-11 17:41:11 +09:00
|
|
|
};
|
2011-01-16 21:57:09 +00:00
|
|
|
|
2014-06-09 13:36:26 +02:00
|
|
|
(makeTest { inherit nodes; testScript = ""; }).driver
|