mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-13 00:20:07 +01:00
16 lines
232 B
Nix
16 lines
232 B
Nix
|
|
{ lib, config, ... }:
|
||
|
|
|
||
|
|
with lib;
|
||
|
|
|
||
|
|
{
|
||
|
|
options.testing.kubetest = {
|
||
|
|
defaultHeader = mkOption {
|
||
|
|
description = "Default test header";
|
||
|
|
type = types.lines;
|
||
|
|
default = ''
|
||
|
|
import pytest
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|