0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Merge staging-next into staging

This commit is contained in:
github-actions[bot] 2022-07-19 18:02:05 +00:00 committed by GitHub
commit 49299f66ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 488 additions and 413 deletions

View file

@ -15,7 +15,8 @@ import ./make-test-python.nix ({ pkgs, ... }: {
testScript = ''
def airsonic_is_up(_) -> bool:
return machine.succeed("curl --fail http://localhost:4040/login")
status, _ = machine.execute("curl --fail http://localhost:4040/login")
return status == 0
machine.start()