Skip to content

Commit 94036ca

Browse files
committedSep 7, 2017
nixos/release*: fixup evaluation of the tested job
1 parent c24820d commit 94036ca

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

Diff for: ‎nixos/release-combined.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ in rec {
8181
(all nixos.tests.boot.uefiUsb)
8282
(all nixos.tests.boot-stage1)
8383
nixos.tests.hibernate.x86_64-linux # i686 is flaky, see #23107
84-
nixos.tests.docker.x86_64-linux
85-
nixos.tests.docker-edge.x86_64-linux
84+
nixos.tests.docker
85+
nixos.tests.docker-edge
8686
(all nixos.tests.ecryptfs)
8787
(all nixos.tests.env)
8888
(all nixos.tests.ipv6)

Diff for: ‎nixos/release.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,9 @@ in rec {
264264
tests.keymap = callSubTests tests/keymap.nix {};
265265
tests.initrdNetwork = callTest tests/initrd-network.nix {};
266266
tests.kernel-copperhead = tests/kernel-copperhead.nix {};
Has conversations. Original line has conversations.
267-
tests.kernel-latest = tests/kernel-latest.nix {};
268-
tests.kernel-lts = tests/kernel-lts.nix {};
269-
tests.kernel-params = tests/kernel-params.nix {};
267+
tests.kernel-latest = callTest tests/kernel-latest.nix {};
268+
tests.kernel-lts = callTest tests/kernel-lts.nix {};
269+
tests.kernel-params = callTest tests/kernel-params.nix {};
270270
tests.keystone = callTest tests/keystone.nix {};
271271
tests.kubernetes = hydraJob (import tests/kubernetes.nix { system = "x86_64-linux"; });
272272
tests.latestKernel.login = callTest tests/login.nix { latestKernel = true; };

1 commit comments

Comments
 (1)

NeQuissimus commented on Sep 7, 2017

@NeQuissimus
Member

My bad :(

Please sign in to comment.