0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

nixosTests.bees: migrate to runTest

Part of #386873
This commit is contained in:
Piotr Kwiecinski 2025-04-03 18:47:20 +02:00
parent 0617636562
commit 6a1662f754
No known key found for this signature in database
GPG key ID: EC0DE1CB9D5258B4
2 changed files with 65 additions and 67 deletions

View file

@ -229,7 +229,7 @@ in
bazarr = runTest ./bazarr.nix; bazarr = runTest ./bazarr.nix;
bcachefs = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./bcachefs.nix; bcachefs = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./bcachefs.nix;
beanstalkd = runTest ./beanstalkd.nix; beanstalkd = runTest ./beanstalkd.nix;
bees = handleTest ./bees.nix { }; bees = runTest ./bees.nix;
benchexec = handleTest ./benchexec.nix { }; benchexec = handleTest ./benchexec.nix { };
binary-cache = runTest { binary-cache = runTest {
imports = [ ./binary-cache.nix ]; imports = [ ./binary-cache.nix ];

View file

@ -1,6 +1,5 @@
import ./make-test-python.nix ( { lib, pkgs, ... }:
{ lib, pkgs, ... }: {
{
name = "bees"; name = "bees";
nodes.machine = nodes.machine =
@ -70,5 +69,4 @@ import ./make-test-python.nix (
"[[ $(stat -c %s /aux1/.beeshome/beeshash.dat) = $(( 16 * 1024 * 1024)) ]]" "[[ $(stat -c %s /aux1/.beeshome/beeshash.dat) = $(( 16 * 1024 * 1024)) ]]"
) )
''; '';
} }
)