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;
bcachefs = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./bcachefs.nix;
beanstalkd = runTest ./beanstalkd.nix;
bees = handleTest ./bees.nix { };
bees = runTest ./bees.nix;
benchexec = handleTest ./benchexec.nix { };
binary-cache = runTest {
imports = [ ./binary-cache.nix ];

View file

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ lib, pkgs, ... }:
{
name = "bees";
@ -71,4 +70,3 @@ import ./make-test-python.nix (
)
'';
}
)