colmena/integration-tests/default.nix

17 lines
497 B
Nix
Raw Normal View History

2021-12-02 21:47:57 +01:00
{
apply = import ./apply {};
apply-streaming = import ./apply { evaluator = "streaming"; };
apply-local = import ./apply-local {};
build-on-target = import ./build-on-target {};
exec = import ./exec {};
flakes = import ./flakes {};
flakes-streaming = import ./flakes { evaluator = "streaming"; };
parallel = import ./parallel {};
apply-stable = let
test = import ./apply { pkgs = import ./nixpkgs-stable.nix; };
in test.override (old: {
name = "apply-stable";
});
2021-12-02 21:47:57 +01:00
}