2023-01-10 09:35:00 +00:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
options.test.enableBig = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
2023-08-08 10:19:01 +00:00
|
|
|
Whether to enable "big" tests. These are tests that require
|
2023-01-10 09:35:00 +00:00
|
|
|
more resources than typical tests. For example, tests that depend on large
|
|
|
|
packages or tests that take long to run.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|