Skip to content

Commit 6193b47

Browse files
authored
Merge pull request #17003 from wordpress-mobile/rename-fastlane-instrumented-test-lane
Added `run_` to `build_and_instrumented_test` lane name.
2 parents f53eea9 + 25d11fb commit 6193b47

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.buildkite/commands/instrumented-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ echo "--- :closed_lock_with_key: Installing Secrets"
77
bundle exec fastlane run configure_apply
88

99
echo "--- 🧪 Testing"
10-
bundle exec fastlane build_and_instrumented_test
10+
bundle exec fastlane build_and_run_instrumented_test

fastlane/lanes/test.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
platform :android do
44
#####################################################################################
5-
# build_and_instrumented_test
5+
# build_and_run_instrumented_test
66
# -----------------------------------------------------------------------------------
77
# Run instrumented tests in Google Firebase Test Lab
88
# -----------------------------------------------------------------------------------
99
# Usage:
10-
# bundle exec fastlane build_and_instrumented_test
10+
# bundle exec fastlane build_and_run_instrumented_test
1111
#
1212
#####################################################################################
1313
desc "Build the application and instrumented tests, then run the tests in Firebase Test Lab"
14-
lane :build_and_instrumented_test do | options |
14+
lane :build_and_run_instrumented_test do | options |
1515
gradle(tasks: ['WordPress:assembleWordPressVanillaDebug', 'WordPress:assembleWordPressVanillaDebugAndroidTest'])
1616

1717
# Run the instrumented tests in Firebase Test Lab

0 commit comments

Comments
 (0)