fastlane-plugin-test_center 3.0.4 â 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8ba76a2245e31a1771c0bd3e416acaca7b79b77
|
|
4
|
+
data.tar.gz: 0b8d749b7e2403d29156c56cc229f317754a31cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4731a0bc166f1c5bedbbf6f3697e2aa84a0a60d34745418a43de4461c48933e69029a994635250f7c0dc29757442732aece486275535f739af415a844b8afbcc
|
|
7
|
+
data.tar.gz: d4b0b21f4f554a8aaaefc7ecb4f0c163cd69a639ede54f92abc9d42af43922401f527064eecc9a8f4ff347a33ea0b88fa10c0fab054a60797a9b349eca692326
|
data/README.md
CHANGED
|
@@ -12,7 +12,51 @@ fastlane add_plugin test_center
|
|
|
12
12
|
|
|
13
13
|
## About test_center
|
|
14
14
|
|
|
15
|
-
This plugin makes testing your iOS app easier by providing you actions that give you greater control over everthing related to testing your app.
|
|
15
|
+
This plugin makes testing your iOS app easier by providing you actions that give you greater control over everthing related to testing your app.
|
|
16
|
+
|
|
17
|
+
The `test_center` plugin started with a problem when working on automated iOS tests:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
đ - code is done, time to run the automated tests
|
|
21
|
+
|
|
22
|
+
â
â
â
â
â
âââ
ââ
â
âââ
â
â
â
â
ââ
â
â
â
â
â
â
â
ââ
â
â
â
âââ
â
ââââ
â
â
â
â
â
ââ
â
|
|
23
|
+
|
|
24
|
+
đ - bummer, maybe if I re-run the tests?
|
|
25
|
+
|
|
26
|
+
â
â
â
â
â
ââ
â
â
ââ
ââ
â
â
ââ
â
â
âââ
â
â
â
â
â
â
â
âââ
â
ââ
â
â
ââ
â
â
â
ââ
â
â
â
â
|
|
27
|
+
|
|
28
|
+
âšī¸ - aw man, still failing? One more time? đ¤
|
|
29
|
+
|
|
30
|
+
â
â
â
â
âââ
â
â
â
â
â
â
â
â
â
â
ââ
â
ââ
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
ââ
â
â
â
â
â
ââ
â
â
|
|
31
|
+
|
|
32
|
+
đĄ - this is terrible, my tests keep failing randomly!
|
|
33
|
+
|
|
34
|
+
đ¤ - maybe there is a better way?
|
|
35
|
+
|
|
36
|
+
đ đĄ đ
|
|
37
|
+
|
|
38
|
+
> enter multi_scan
|
|
39
|
+
|
|
40
|
+
đ - code is done, time to run the automated tests
|
|
41
|
+
|
|
42
|
+
â
â
â
â
â
ââ
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
ââ
â
â
â
â
â
â
â
â
â
|
|
43
|
+
|
|
44
|
+
đ - bummer, maybe if I re-run multi_scan again?
|
|
45
|
+
|
|
46
|
+
â
â
â
â
â
ââ
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
ââ
â
â
â
â
â
â
â
â
â
|
|
47
|
+
|
|
48
|
+
đ - hmmm, maybe these are real test failures?
|
|
49
|
+
|
|
50
|
+
â
â
â
â
â
ââ
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
ââ
â
â
â
â
â
â
â
â
â
|
|
51
|
+
|
|
52
|
+
đ - okay, these are real test failures, time to fix them!
|
|
53
|
+
|
|
54
|
+
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
â
|
|
55
|
+
|
|
56
|
+
đ - green is joy!
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
`multi_scan` began when I engineered an action to only re-run the failed tests in order to determine which ones were truly failing, or just failing randomly due to a fragile infrastructure. This action morphed into an entire plugin with many actions related to tests.
|
|
16
60
|
|
|
17
61
|
This fastlane plugin includes the following actions:
|
|
18
62
|
- [`multi_scan`](#multi-scan): gives you control over how your tests are exercised.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-test_center
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lyndsey Ferguson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-02-
|
|
11
|
+
date: 2018-02-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: plist
|
|
@@ -233,3 +233,4 @@ signing_key:
|
|
|
233
233
|
specification_version: 4
|
|
234
234
|
summary: Makes testing your iOS app easier
|
|
235
235
|
test_files: []
|
|
236
|
+
has_rdoc:
|