From 0536ce26a8b899da2904535ddc3a9d3cff2511e3 Mon Sep 17 00:00:00 2001 From: Nicolas Burtey Date: Fri, 14 Jul 2023 19:56:52 +0100 Subject: [PATCH] chore: missing some mailslurp env variable --- android/fastlane/Fastfile | 2 +- ios/fastlane/Fastfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/fastlane/Fastfile b/android/fastlane/Fastfile index cb0b467d7d..8fd3b1f049 100644 --- a/android/fastlane/Fastfile +++ b/android/fastlane/Fastfile @@ -110,6 +110,6 @@ platform :android do browserstack_access_key: ENV["BROWSERSTACK_ACCESS_KEY"], file_path: ENV["GRADLE_APK_OUTPUT_PATH"] ) - sh("GALOY_TEST_TOKENS=$GALOY_TEST_TOKENS && GALOY_TOKEN_2=$GALOY_TOKEN_2 && yarn test:browserstack:android") + sh("GALOY_TEST_TOKENS=$GALOY_TEST_TOKENS && GALOY_TOKEN_2=$GALOY_TOKEN_2 && MAILSLURP_API_KEY=$MAILSLURP_API_KEY && yarn test:browserstack:android") end end diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 2cf283e347..d3628c16f3 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -128,6 +128,6 @@ platform :ios do browserstack_username: ENV["BROWSERSTACK_USER"], browserstack_access_key: ENV["BROWSERSTACK_ACCESS_KEY"], ) - sh("GALOY_TEST_TOKENS=$GALOY_TEST_TOKENS && GALOY_TOKEN_2=$GALOY_TOKEN_2 && yarn test:browserstack:ios") + sh("GALOY_TEST_TOKENS=$GALOY_TEST_TOKENS && GALOY_TOKEN_2=$GALOY_TOKEN_2 && MAILSLURP_API_KEY=$MAILSLURP_API_KEY && yarn test:browserstack:ios") end end