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: d7c0149f00fe40b9abe8a9ef8ad122604866b485
4
- data.tar.gz: 840aed439777798ec3a07a54b3da376cfb8d6be3
3
+ metadata.gz: f8ba76a2245e31a1771c0bd3e416acaca7b79b77
4
+ data.tar.gz: 0b8d749b7e2403d29156c56cc229f317754a31cc
5
5
  SHA512:
6
- metadata.gz: 61c26927fb8e28626918ad55dc685bfafabf9612c85fac99df6cb948ab4e1de99472703f67ede2f614597486b5333c7536eb32c5b0facf6fbe19740c4250b573
7
- data.tar.gz: b9b0312371c004b0f7dec02cef13b3d2e004dac56811a096d5d214e1b48920c570d59f22434990399093a1194cbe4a6ee4ec9957040f3cfb26baae083782ce7b
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.
@@ -20,6 +20,7 @@ module TestCenter
20
20
  output_directory
21
21
  only_testing
22
22
  skip_testing
23
+ clean
23
24
  try_count
24
25
  batch_count
25
26
  custom_report_file_name
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module TestCenter
3
- VERSION = "3.0.4"
3
+ VERSION = "3.0.5"
4
4
  end
5
5
  end
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
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-18 00:00:00.000000000 Z
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: