about summary refs log tree commit diff
path: root/nixos/doc/manual/development/writing-nixos-tests.section.md
diff options
context:
space:
mode:
authortljuniper <48209000+tljuniper@users.noreply.github.com>2022-06-21 09:05:24 +0200
committertljuniper <48209000+tljuniper@users.noreply.github.com>2022-06-21 09:05:24 +0200
commit84f1f79a8d9219ddaabdbaf6c3dab09cc409c2a7 (patch)
tree02b82e5b2de1b368c33807108d18922be5098cd1 /nixos/doc/manual/development/writing-nixos-tests.section.md
parentddb0914a7d2f438c3e12804edc407368be144fc7 (diff)
nixos/doc: test-driver: Note on skipTypeCheck with extraPythonPackages
Diffstat (limited to 'nixos/doc/manual/development/writing-nixos-tests.section.md')
-rw-r--r--nixos/doc/manual/development/writing-nixos-tests.section.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/doc/manual/development/writing-nixos-tests.section.md b/nixos/doc/manual/development/writing-nixos-tests.section.md
index f4f4056ad9889..da965ce09e369 100644
--- a/nixos/doc/manual/development/writing-nixos-tests.section.md
+++ b/nixos/doc/manual/development/writing-nixos-tests.section.md
@@ -362,7 +362,6 @@ with foo_running:
     ...  # Put `foo` through its paces
 ```
 
-
 `polling_condition` takes the following (optional) arguments:
 
 `seconds_interval`
@@ -407,6 +406,9 @@ import ./make-test-python.nix
 
   nodes = { };
 
+  # Type checking on extra packages doesn't work yet
+  skipTypeCheck = true;
+
   testScript = ''
     import numpy as np
     assert str(np.zeros(4) == "array([0., 0., 0., 0.])")