nixosTests.nifi: migrate to runTestOn

Part of #386873
This commit is contained in:
Piotr Kwiecinski
2025-03-30 03:14:28 +02:00
parent ee0fecd318
commit 28cd6cadd2
2 changed files with 27 additions and 29 deletions

View File

@@ -815,7 +815,7 @@ in {
nginx-tmpdir = handleTest ./nginx-tmpdir.nix {};
nginx-unix-socket = handleTest ./nginx-unix-socket.nix {};
nginx-variants = handleTest ./nginx-variants.nix {};
nifi = handleTestOn ["x86_64-linux"] ./web-apps/nifi.nix {};
nifi = runTestOn ["x86_64-linux"] ./web-apps/nifi.nix;
nitter = handleTest ./nitter.nix {};
nix-config = handleTest ./nix-config.nix {};
nix-ld = handleTest ./nix-ld.nix {};

View File

@@ -1,4 +1,3 @@
import ../make-test-python.nix (
{ pkgs, ... }:
{
name = "nifi";
@@ -31,4 +30,3 @@ import ../make-test-python.nix (
nifi.shutdown()
'';
}
)