Skip to content

Commit

Permalink
nixos/release*: fixup evaluation of the tested job
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Sep 7, 2017
1 parent c24820d commit 94036ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions nixos/release-combined.nix
Expand Up @@ -81,8 +81,8 @@ in rec {
(all nixos.tests.boot.uefiUsb)
(all nixos.tests.boot-stage1)
nixos.tests.hibernate.x86_64-linux # i686 is flaky, see #23107
nixos.tests.docker.x86_64-linux
nixos.tests.docker-edge.x86_64-linux
nixos.tests.docker
nixos.tests.docker-edge
(all nixos.tests.ecryptfs)
(all nixos.tests.env)
(all nixos.tests.ipv6)
Expand Down
6 changes: 3 additions & 3 deletions nixos/release.nix
Expand Up @@ -264,9 +264,9 @@ in rec {
tests.keymap = callSubTests tests/keymap.nix {};
tests.initrdNetwork = callTest tests/initrd-network.nix {};
tests.kernel-copperhead = tests/kernel-copperhead.nix {};

This comment has been minimized.

Copy link
@NeQuissimus

NeQuissimus Sep 7, 2017

Member

Does not one also need a callTest?

This comment has been minimized.

Copy link
@vcunat

vcunat Sep 7, 2017

Author Member

Oh, right, I missed it and it didn't throw an error for me anymore, I think. Calling a path as a function never works.

This comment has been minimized.

Copy link
@NeQuissimus

NeQuissimus Sep 7, 2017

Member

yeah, that was just a brain-fart... I should have caught that

This comment has been minimized.

Copy link
@NeQuissimus

NeQuissimus Sep 7, 2017

Member
tests.kernel-latest = tests/kernel-latest.nix {};
tests.kernel-lts = tests/kernel-lts.nix {};
tests.kernel-params = tests/kernel-params.nix {};
tests.kernel-latest = callTest tests/kernel-latest.nix {};
tests.kernel-lts = callTest tests/kernel-lts.nix {};
tests.kernel-params = callTest tests/kernel-params.nix {};
tests.keystone = callTest tests/keystone.nix {};
tests.kubernetes = hydraJob (import tests/kubernetes.nix { system = "x86_64-linux"; });
tests.latestKernel.login = callTest tests/login.nix { latestKernel = true; };
Expand Down

1 comment on commit 94036ca

@NeQuissimus
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My bad :(

Please sign in to comment.