forked from DGNum/colmena
11 lines
202 B
Nix
11 lines
202 B
Nix
let
|
|
tools = import ../tools.nix {};
|
|
in tools.makeTest {
|
|
name = "colmena-apply";
|
|
|
|
bundle = ./.;
|
|
|
|
testScript = ''
|
|
colmena = "${tools.colmenaExec}"
|
|
'' + builtins.readFile ./test-script.py;
|
|
}
|