python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / simple.nix
blobc36287b4e843bece487cce5988ac8935fba57fa1
1 import ./make-test-python.nix ({ pkgs, ...} : {
2   name = "simple";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ eelco ];
5   };
7   nodes.machine = { ... }: {
8     imports = [ ../modules/profiles/minimal.nix ];
9   };
11   testScript =
12     ''
13       start_all()
14       machine.wait_for_unit("multi-user.target")
15       machine.shutdown()
16     '';