dontCheckIf
pkgs.haskell.lib.dontCheckIf
Docs pulled from | This Revision | 34 minutes ago
The dontCheckIf variant sets doCheck = false if the condition applies. In any other case the previously set/default value is used. This prevents accidentally re-enabling tests in a later override.
Inputs
drv
-
1. Function argument
condition
-
2. Function argument
Noogle detected
Implementation
The following is the current implementation of this function.
dontCheckIf = drv: condition: compose.dontCheckIf condition drv;