Module: Fastlane::Commands
- Defined in:
- lib/fastlane/plugin/run_tests_firebase_testlab/commands/commands.rb
Class Method Summary collapse
- .auth ⇒ Object
- .config ⇒ Object
- .delete_resuls ⇒ Object
- .download_results ⇒ Object
- .run_tests ⇒ Object
Class Method Details
.auth ⇒ Object
7 8 9 |
# File 'lib/fastlane/plugin/run_tests_firebase_testlab/commands/commands.rb', line 7 def self.auth "gcloud auth activate-service-account" end |
.config ⇒ Object
3 4 5 |
# File 'lib/fastlane/plugin/run_tests_firebase_testlab/commands/commands.rb', line 3 def self.config "gcloud config set project" end |
.delete_resuls ⇒ Object
19 20 21 |
# File 'lib/fastlane/plugin/run_tests_firebase_testlab/commands/commands.rb', line 19 def self.delete_resuls "gsutil rm -r" end |
.download_results ⇒ Object
15 16 17 |
# File 'lib/fastlane/plugin/run_tests_firebase_testlab/commands/commands.rb', line 15 def self.download_results "gsutil -m cp -r" end |
.run_tests ⇒ Object
11 12 13 |
# File 'lib/fastlane/plugin/run_tests_firebase_testlab/commands/commands.rb', line 11 def self.run_tests "gcloud firebase test android run" end |