forked from DGNum/colmena
13 lines
247 B
Nix
13 lines
247 B
Nix
{ pkgs ? import ../nixpkgs.nix }:
|
|
|
|
let
|
|
tools = pkgs.callPackage ../tools.nix {};
|
|
in tools.makeTest {
|
|
name = "colmena-apply";
|
|
|
|
bundle = ./.;
|
|
|
|
testScript = ''
|
|
colmena = "${tools.colmenaExec}"
|
|
'' + builtins.readFile ./test-script.py;
|
|
}
|