feat(test): support for enabling and disabling tests

This commit is contained in:
Jaka Hudoklin 2019-02-13 17:03:27 +01:00
parent ae3b208821
commit c1b84f3192
No known key found for this signature in database
GPG key ID: 6A08896BFD32BD95
2 changed files with 26 additions and 10 deletions

View file

@ -14,6 +14,12 @@ with lib;
type = types.str;
};
enable = mkOption {
description = "Whether to enable test";
type = types.bool;
default = true;
};
assertions = mkOption {
type = types.listOf (types.submodule {
options = {