nixos/doc: test-driver: Note on skipTypeCheck with extraPythonPackages

This commit is contained in:
tljuniper 2022-06-21 09:05:24 +02:00
parent ddb0914a7d
commit 84f1f79a8d
2 changed files with 6 additions and 1 deletions

View file

@ -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.])")

View file

@ -680,6 +680,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.])")