about summary refs log tree commit diff
path: root/nixos/doc/manual/development
diff options
context:
space:
mode:
authorValentin Gagarin <valentin.gagarin@tweag.io>2022-07-15 11:50:54 +0100
committerGitHub <noreply@github.com>2022-07-15 11:50:54 +0100
commit15edb27dd573a858885692fe5bd08e0030bb59d1 (patch)
tree65db91ebaa30e21cefdce917c716b864b7b5cc1d /nixos/doc/manual/development
parente83851024e9347d1ee162bda07360639ce254e19 (diff)
parent84f1f79a8d9219ddaabdbaf6c3dab09cc409c2a7 (diff)
Merge pull request #177732 from tljuniper/python-doc-typos
doc/languages-frameworks: Fix typos
Diffstat (limited to 'nixos/doc/manual/development')
-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.])")