diff --git a/README.md b/README.md index c6f2cc4..fa7ae60 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ test_suites: pool_names: - android pool 1 - ios pool 1 - job_timeout: 8 # minutes, set per job + job_timeout: 15 # minutes, set per job, over-rides default job timeout above ``` Multiple test suites, consisting of multiple tests, can be run on each device in each device pool. The 'main' app must include a call to `enableFlutterDriverExtension()`. diff --git a/example/sylph.yaml b/example/sylph.yaml index 571784b..d66a41a 100644 --- a/example/sylph.yaml +++ b/example/sylph.yaml @@ -57,4 +57,4 @@ test_suites: - android pool 1 - ios pool 1 # - iPhone 5c - job_timeout: 8 # minutes, set per job + job_timeout: 15 # minutes, set per job, over-rides default job timeout above diff --git a/lib/resources/fastlane/Appfile b/lib/resources/fastlane/Appfile index 676ad27..20ff6c6 100644 --- a/lib/resources/fastlane/Appfile +++ b/lib/resources/fastlane/Appfile @@ -1,8 +1,4 @@ app_identifier("$APP_IDENTIFIER") # The bundle identifier of your app -#apple_id("$APPLE_ID") # Your Apple email address - -#itc_team_id("$ITC_TEAM_ID") # App Store Connect Team ID -#team_id("$TEAM_ID") # Developer Portal Team ID # For more information about the Appfile, see: # https://docs.fastlane.tools/advanced/#appfile diff --git a/lib/src/bundle.dart b/lib/src/bundle.dart index 7d1c055..f2a7ff5 100644 --- a/lib/src/bundle.dart +++ b/lib/src/bundle.dart @@ -17,12 +17,7 @@ const kBuildToOsMapFileName = 'build_to_os.txt'; // env consts const kCIEnvVar = 'CI'; const kExportOptionsPlistEnvVars = ['APP_IDENTIFIER', 'TEAM_ID']; -const kAppfileEnvVars = [ - 'APP_IDENTIFIER', -// 'APPLE_ID', -// 'ITC_TEAM_ID', -// 'TEAM_ID' -]; // order dependent +const kAppfileEnvVars = ['APP_IDENTIFIER']; const kCIBuildEnvVars = [ 'PUBLISHING_MATCH_CERTIFICATE_REPO', 'MATCH_PASSWORD',