fastlane-plugin-saucectl 0.1.4.pre → 0.1.5.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 024240ff63318f8b16a171d979f78e248056944b7d101fcc65fd624052109931
4
- data.tar.gz: 8658779f3666c3763d3bee9653a1615948cfaa5d86a29ae467bec7bd312bf446
3
+ metadata.gz: 0e8ebb5a262c386ebc64f2964179acfd65354df626d62b418a29a8ab3d41a0f5
4
+ data.tar.gz: 1682d0941237bad34d29b012fcddccbb4cfa2d7da16d5412dcb6d330202bb67a
5
5
  SHA512:
6
- metadata.gz: 52a09bb69e87375bc95c2859926f7f67d4d95e46c7dab759273579c736148b21490ac098d9f3d88fc624d6be9a86e0126d313d54b1b6a36b5832787c9809323b
7
- data.tar.gz: 0e227865084afc04b8b6677229db631bc9385a6550fe44f74450517b9ddfecd6787675b773bfd78ff90624d235bf28dc802634b2ca5667711231479f68983e86
6
+ metadata.gz: 26c29ac5d4aad6bb912533b43c382cd63418d890a5d467122679d043bf3a3c1b074895761fba59e21b723dc3f20f1add2139ce4ad64ed44884d9839c03458630
7
+ data.tar.gz: 77e8448cb56e675c049a6be97bd04b6b3d3499dddd3d930bf21193d962b9eda2e50165fe218ef9eed9f345300bf0b9e04b2decd136f98e4564104c99fef3dfe5
data/README.md CHANGED
@@ -13,7 +13,7 @@ fastlane add_plugin saucectl
13
13
 
14
14
  ## About fastlane-plugin-saucectl
15
15
 
16
- The purpose of this plugin is to simplify the set up, configuration, upload, and execution of espresso and xcuitests via the [Sauce Labs](https://saucelabs.com/) platform by utilizing fastlane which will enable you to test your iOS and and Android apps at scale using [Sauce Labs CLI](https://docs.saucelabs.com/dev/cli/saucectl/).
16
+ The purpose of this plugin is to simplify the set up, configuration, upload, and execution of espresso and XCUITest on the Sauce Labs platform by utilizing fastlane which will enable you to test your iOS and Android apps at scale.
17
17
 
18
18
  **IMPORTANT:** in order for you to use this plugin to execute UI tests, your test class names must proceed with Spec, Specs, Tests, or Test, for example ExampleSpec, ExampleSpecs, ExampleTest, ExampleTests. Your test case names must also begin with test, for example testIDoSomething, testIDoSomethingElse. This is so that the the plugin can search for test classes and their included test cases.
19
19
 
@@ -23,14 +23,14 @@ Failure to do this will result in missing test classes and test cases from your
23
23
 
24
24
  | Available Actions | Description |
25
25
  |---------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
26
- | install_saucectl | Downloads the Sauce Labs saucectl cli binary for test execution |
27
- | sauce_upload | Upload test artifacts to sauce labs storage |
28
- | sauce_config | Create SauceLabs configuration file for test execution based on given parameters |
29
- | sauce_runner | Execute automated tests on sauce labs platform via saucectl binary for specified configuration |
30
- | delete_from_storage | Delete test artifacts from sauce labs storage by storage id or group id |
31
- | sauce_apps | Returns the set of files by specific app id that have been uploaded to Sauce Storage by the requester |
32
- | sauce_devices | Returns a list of Device IDs for all devices in the data center that are currently free for testing. |
33
- | disabled_tests | Fetches any disabled ui test cases (for android searches for @Ignore tests, and for ios skipped tests within an xcode test plan). Plan is to use this in the future for generating pretty HTML reports |
26
+ | `install_saucectl` | Downloads the Sauce Labs saucectl cli binary for test execution |
27
+ | `sauce_upload` | Upload test artifacts to sauce labs storage |
28
+ | `sauce_config` | Create SauceLabs configuration file for test execution based on given parameters |
29
+ | `sauce_runner` | Execute automated tests on sauce labs platform via saucectl binary for specified configuration |
30
+ | `delete_from_storage` | Delete test artifacts from sauce labs storage by storage id or group id |
31
+ | `sauce_apps` | Returns the set of files by specific app id that have been uploaded to Sauce Storage by the requester |
32
+ | `sauce_devices` | Returns a list of Device IDs for all devices in the data center that are currently free for testing. |
33
+ | `disabled_tests` | Fetches any disabled ui test cases (for android searches for @Ignore tests, and for ios skipped tests within an xcode test plan). Plan is to use this in the future for generating pretty HTML reports |
34
34
 
35
35
  An order of which you may utilize the above actions in your continuous integration platform could be:
36
36
  1. Install the saucectl binary via `install_saucectl`
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Saucectl
3
- VERSION = "0.1.4.pre"
3
+ VERSION = "0.1.5.pre"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-saucectl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4.pre
4
+ version: 0.1.5.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Hamilton
@@ -215,5 +215,7 @@ requirements: []
215
215
  rubygems_version: 3.3.7
216
216
  signing_key:
217
217
  specification_version: 4
218
- summary: Test your iOS and and Android apps at scale using Sauce Labs toolkit.
218
+ summary: Simplify the set up, configuration, upload, and execution of espresso and
219
+ XCUITest on the Sauce Labs platform by utilizing fastlane which will enable you
220
+ to test your iOS and Android apps at scale
219
221
  test_files: []