2022-01-02 10:22:50 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
options.test.enableBig = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-06-30 06:48:21 +02:00
|
|
|
Whether to enable "big" tests. These are tests that require
|
2022-01-02 10:22:50 +01:00
|
|
|
more resources than typical tests. For example, tests that depend on large
|
|
|
|
packages or tests that take long to run.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|