mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
parent
3a8c9fbc75
commit
79c1d5b7c7
2 changed files with 21 additions and 23 deletions
|
@ -203,7 +203,7 @@ in {
|
||||||
};
|
};
|
||||||
ayatana-indicators = runTest ./ayatana-indicators.nix;
|
ayatana-indicators = runTest ./ayatana-indicators.nix;
|
||||||
babeld = runTest ./babeld.nix;
|
babeld = runTest ./babeld.nix;
|
||||||
bazarr = handleTest ./bazarr.nix {};
|
bazarr = runTest ./bazarr.nix;
|
||||||
bcachefs = handleTestOn ["x86_64-linux" "aarch64-linux"] ./bcachefs.nix {};
|
bcachefs = handleTestOn ["x86_64-linux" "aarch64-linux"] ./bcachefs.nix {};
|
||||||
beanstalkd = handleTest ./beanstalkd.nix {};
|
beanstalkd = handleTest ./beanstalkd.nix {};
|
||||||
bees = handleTest ./bees.nix {};
|
bees = handleTest ./bees.nix {};
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
import ./make-test-python.nix (
|
{ lib, ... }:
|
||||||
{ lib, ... }:
|
|
||||||
|
|
||||||
let
|
let
|
||||||
port = 42069;
|
port = 42069;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
name = "bazarr";
|
name = "bazarr";
|
||||||
meta.maintainers = with lib.maintainers; [ d-xo ];
|
meta.maintainers = with lib.maintainers; [ d-xo ];
|
||||||
|
|
||||||
|
@ -22,5 +21,4 @@ import ./make-test-python.nix (
|
||||||
machine.wait_for_open_port(${toString port})
|
machine.wait_for_open_port(${toString port})
|
||||||
machine.succeed("curl --fail http://localhost:${toString port}/")
|
machine.succeed("curl --fail http://localhost:${toString port}/")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue