ci(postman): add tunnel collection to postman tests (#8269)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
likhinbopanna
2025-06-08 19:14:03 +05:30
committed by GitHub
parent 6f75c4b699
commit e58eeb1aa9
60 changed files with 3007 additions and 0 deletions

View File

@ -293,6 +293,10 @@ pub fn generate_newman_command_for_connector() -> Result<ReturnArgs> {
]);
}
if let Ok(merchant_api_key) = env::var("MERCHANT_API_KEY") {
newman_command.args(["--env-var", &format!("merchant_api_key={merchant_api_key}")]);
}
newman_command.args([
"--delay-request",
format!("{}", &args.delay_request).as_str(),