repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
nixos
/
tests
/
simple.nix
blob
c36287b4e843bece487cce5988ac8935fba57fa1
1
import ./make-test-python.nix ({ pkgs, ...} : {
2
name = "simple";
3
meta = with pkgs.lib.maintainers; {
4
maintainers = [ eelco ];
5
};
6
7
nodes.machine = { ... }: {
8
imports = [ ../modules/profiles/minimal.nix ];
9
};
10
11
testScript =
12
''
13
start_all()
14
machine.wait_for_unit("multi-user.target")
15
machine.shutdown()
16
'';
17
})