mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 16:45:15 +00:00
Merge pull request #336441 from devusb/aws-sso-fix
aws-sso-cli: skip broken TestServerWithSSL
This commit is contained in:
commit
06f723de83
@ -32,9 +32,14 @@ buildGoModule rec {
|
||||
|
||||
nativeCheckInputs = [ getent ];
|
||||
|
||||
checkFlags = [
|
||||
"-skip=TestAWSConsoleUrl|TestAWSFederatedUrl"
|
||||
] ++ lib.optionals stdenv.isDarwin [ "--skip=TestDetectShellBash" ];
|
||||
checkFlags = let
|
||||
skippedTests = [
|
||||
"TestAWSConsoleUrl"
|
||||
"TestAWSFederatedUrl"
|
||||
"TestServerWithSSL" # https://github.com/synfinatic/aws-sso-cli/issues/1030 -- remove when version >= 2.x
|
||||
] ++ lib.optionals stdenv.isDarwin [ "TestDetectShellBash" ];
|
||||
in
|
||||
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/synfinatic/aws-sso-cli";
|
||||
|
Loading…
Reference in New Issue
Block a user