mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
nixosTests.simple-vm: rename from nixosTests.simple
renamed because we now have different kinds of tests
This commit is contained in:
parent
81371ab13f
commit
244b700403
8 changed files with 9 additions and 9 deletions
|
|
@ -188,7 +188,7 @@ let
|
|||
kernel: rebuilds: lib.nameValuePair "10.rebuild-${kernel}-stdenv" (lib.elem "stdenv" rebuilds)
|
||||
) rebuildsByKernel
|
||||
// {
|
||||
"10.rebuild-nixos-tests" = lib.elem "nixosTests.simple" (extractPackageNames diffAttrs.rebuilds);
|
||||
"10.rebuild-nixos-tests" = lib.elem "nixosTests.simple-vm" (extractPackageNames diffAttrs.rebuilds);
|
||||
};
|
||||
}
|
||||
);
|
||||
|
|
|
|||
|
|
@ -108,6 +108,6 @@ in
|
|||
tweak (
|
||||
(removeAttrs nixpkgsJobs blacklist)
|
||||
// {
|
||||
nixosTests = lib.filterAttrs (name: _: name == "simple") nixosJobs.tests;
|
||||
nixosTests = lib.filterAttrs (name: _: name == "simple-vm") nixosJobs.tests;
|
||||
}
|
||||
)
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ async function checkTargetBranch({ github, context, core, dry }) {
|
|||
...Object.values(changed.rebuildCountByKernel),
|
||||
)
|
||||
const rebuildsAllTests =
|
||||
changed.attrdiff.changed.includes('nixosTests.simple')
|
||||
changed.attrdiff.changed.includes('nixosTests.simple-vm')
|
||||
|
||||
// https://github.com/NixOS/nixpkgs/pull/481205#issuecomment-3790123921
|
||||
// These should go to staging-nixos instead of master,
|
||||
|
|
|
|||
|
|
@ -202,7 +202,7 @@ rec {
|
|||
(onFullSupported "nixos.tests.proxy")
|
||||
(onFullSupported "nixos.tests.sddm.default")
|
||||
(onFullSupported "nixos.tests.shadow")
|
||||
(onFullSupported "nixos.tests.simple")
|
||||
(onFullSupported "nixos.tests.simple-vm")
|
||||
(onFullSupported "nixos.tests.sway")
|
||||
(onFullSupported "nixos.tests.switchTest")
|
||||
(onFullSupported "nixos.tests.udisks2")
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ rec {
|
|||
php
|
||||
predictable-interface-names
|
||||
proxy
|
||||
simple
|
||||
simple-vm
|
||||
;
|
||||
latestKernel = {
|
||||
inherit (nixos'.tests.latestKernel)
|
||||
|
|
@ -165,7 +165,7 @@ rec {
|
|||
"nixos.tests.predictable-interface-names.unpredictable"
|
||||
"nixos.tests.predictable-interface-names.unpredictableNetworkd"
|
||||
"nixos.tests.proxy"
|
||||
"nixos.tests.simple"
|
||||
"nixos.tests.simple-vm"
|
||||
"nixpkgs.jdk"
|
||||
"nixpkgs.tests.stdenv.tests-stdenv-gcc-stageCompare"
|
||||
"nixpkgs.opensshTest"
|
||||
|
|
|
|||
|
|
@ -1508,7 +1508,7 @@ in
|
|||
shoko = import ./shoko.nix { inherit runTest; };
|
||||
signal-desktop = runTest ./signal-desktop.nix;
|
||||
silverbullet = runTest ./silverbullet.nix;
|
||||
simple = runTest ./simple.nix;
|
||||
simple-vm = runTest ./simple-vm.nix;
|
||||
sing-box = runTest ./sing-box.nix;
|
||||
sks = runTest ./sks.nix;
|
||||
slimserver = runTest ./slimserver.nix;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
nixosTests.simple, but with skipTypeCheck.
|
||||
nixosTests.simple-vm, but with skipTypeCheck.
|
||||
This catches regressions in the wiring, e.g.
|
||||
https://github.com/NixOS/nixpkgs/pull/511225
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
name = "simple";
|
||||
name = "simple-vm";
|
||||
|
||||
nodes.machine = { };
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue