mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
parent
9b7b22afa1
commit
6919956d08
2 changed files with 80 additions and 79 deletions
|
@ -1036,7 +1036,7 @@ in {
|
||||||
slurm = handleTest ./slurm.nix {};
|
slurm = handleTest ./slurm.nix {};
|
||||||
snmpd = handleTest ./snmpd.nix {};
|
snmpd = handleTest ./snmpd.nix {};
|
||||||
smokeping = handleTest ./smokeping.nix {};
|
smokeping = handleTest ./smokeping.nix {};
|
||||||
snapcast = handleTest ./snapcast.nix {};
|
snapcast = runTest ./snapcast.nix;
|
||||||
snapper = handleTest ./snapper.nix {};
|
snapper = handleTest ./snapper.nix {};
|
||||||
snipe-it = runTest ./web-apps/snipe-it.nix;
|
snipe-it = runTest ./web-apps/snipe-it.nix;
|
||||||
soapui = handleTest ./soapui.nix {};
|
soapui = handleTest ./soapui.nix {};
|
||||||
|
|
|
@ -1,14 +1,16 @@
|
||||||
import ./make-test-python.nix (
|
{
|
||||||
{ pkgs, ... }:
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
port = 10004;
|
port = 10004;
|
||||||
tcpPort = 10005;
|
tcpPort = 10005;
|
||||||
httpPort = 10080;
|
httpPort = 10080;
|
||||||
tcpStreamPort = 10006;
|
tcpStreamPort = 10006;
|
||||||
bufferSize = 742;
|
bufferSize = 742;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
name = "snapcast";
|
name = "snapcast";
|
||||||
meta = with pkgs.lib.maintainers; {
|
meta = with pkgs.lib.maintainers; {
|
||||||
maintainers = [ hexa ];
|
maintainers = [ hexa ];
|
||||||
|
@ -89,5 +91,4 @@ import ./make-test-python.nix (
|
||||||
)
|
)
|
||||||
client.wait_until_succeeds("journalctl -o cat -u snapcast-client | grep -q 'buffer: ${toString bufferSize}'")
|
client.wait_until_succeeds("journalctl -o cat -u snapcast-client | grep -q 'buffer: ${toString bufferSize}'")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue