75fa0ae5af
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
13 lines
336 B
Nix
13 lines
336 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.test.enableBig = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = ''
|
|
Whether to enable "big" tests. These are tests that require
|
|
more resources than typical tests. For example, tests that depend on large
|
|
packages or tests that take long to run.
|
|
'';
|
|
};
|
|
}
|