make-test: expose test config

This is useful for programmatically exploring a test config or for building a test system
on a custom platform.
This commit is contained in:
Erik Arvstedt
2020-12-11 13:27:04 +01:00
parent 7265742655
commit ed65e78a2b
+3 -1
View File
@@ -41,11 +41,13 @@ scenario: testConfig:
container = { container = {
# The container name has a 11 char length limit # The container name has a 11 char length limit
containers.nb-test = { config, ...}: { containers.nb-test = { config, ... }: {
config = { config = {
extra = config.config.test.container; extra = config.config.test.container;
config = testConfig; config = testConfig;
}; };
}; };
}; };
config = testConfig;
} }