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 +4 -4
- data/README.md +9 -9
- data/lib/fastlane/plugin/saucectl/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e8ebb5a262c386ebc64f2964179acfd65354df626d62b418a29a8ab3d41a0f5
|
4
|
+
data.tar.gz: 1682d0941237bad34d29b012fcddccbb4cfa2d7da16d5412dcb6d330202bb67a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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`
|
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
|
+
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:
|
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: []
|