mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ebde306504
* doc: remove references to mdDoc in nixos/doc/manual/development/option-declarations.section.md * nixos/lib: remove mdDoc in nixos/lib/make-options-doc/default.nix * nixos/lib: remove mdDoc in nixos/lib/systemd-types.nix * nixos/lib: remove mdDoc in nixos/lib/systemd-unit-options.nix * nixos/lib: remove mdDoc in nixos/lib/testing/driver.nix * nixos/lib: remove mdDoc in nixos/lib/testing/interactive.nix * nixos/lib: remove mdDoc in nixos/lib/testing/meta.nix * nixos/lib: remove mdDoc in nixos/lib/testing/name.nix * nixos/lib: remove mdDoc in nixos/lib/testing/network.nix * nixos/lib: remove mdDoc in nixos/lib/testing/nodes.nix * nixos/lib: remove mdDoc in nixos/lib/testing/run.nix * nixos/lib: remove mdDoc in nixos/lib/testing/testScript.nix
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ config, lib, moduleType, hostPkgs, ... }:
|
|
let
|
|
inherit (lib) mkOption types;
|
|
in
|
|
{
|
|
options = {
|
|
interactive = mkOption {
|
|
description = ''
|
|
Tests [can be run interactively](#sec-running-nixos-tests-interactively)
|
|
using the program in the test derivation's `.driverInteractive` attribute.
|
|
|
|
When they are, the configuration will include anything set in this submodule.
|
|
|
|
You can set any top-level test option here.
|
|
|
|
Example test module:
|
|
|
|
```nix
|
|
{ config, lib, ... }: {
|
|
|
|
nodes.rabbitmq = {
|
|
services.rabbitmq.enable = true;
|
|
};
|
|
|
|
# When running interactively ...
|
|
interactive.nodes.rabbitmq = {
|
|
# ... enable the web ui.
|
|
services.rabbitmq.managementPlugin.enable = true;
|
|
};
|
|
}
|
|
```
|
|
|
|
For details, see the section about [running tests interactively](#sec-running-nixos-tests-interactively).
|
|
'';
|
|
type = moduleType;
|
|
visible = "shallow";
|
|
};
|
|
};
|
|
|
|
config = {
|
|
interactive.qemu.package = hostPkgs.qemu;
|
|
interactive.extraDriverArgs = [ "--interactive" ];
|
|
passthru.driverInteractive = config.interactive.driver;
|
|
};
|
|
}
|