nixosTests.grocy: migrate to runTest

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

View file

@ -551,7 +551,7 @@ in
grav = runTest ./web-apps/grav.nix; grav = runTest ./web-apps/grav.nix;
graylog = handleTest ./graylog.nix { }; graylog = handleTest ./graylog.nix { };
greetd-no-shadow = handleTest ./greetd-no-shadow.nix { }; greetd-no-shadow = handleTest ./greetd-no-shadow.nix { };
grocy = handleTest ./grocy.nix { }; grocy = runTest ./grocy.nix;
grow-partition = runTest ./grow-partition.nix; grow-partition = runTest ./grow-partition.nix;
grub = handleTest ./grub.nix { }; grub = handleTest ./grub.nix { };
guacamole-server = handleTest ./guacamole-server.nix { }; guacamole-server = handleTest ./guacamole-server.nix { };

View file

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ pkgs, ... }: { pkgs, ... }:
{ {
name = "grocy"; name = "grocy";
@ -78,4 +77,3 @@ import ./make-test-python.nix (
machine.shutdown() machine.shutdown()
''; '';
} }
)