fastlane-plugin-test_center 3.5.1 → 3.5.2

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
  SHA1:
3
- metadata.gz: 1eaa0f4225d01562a8fe0726ac8b542597e25a2f
4
- data.tar.gz: da812fdf4b4d3c199537361331ce2ba325b864c4
3
+ metadata.gz: c203e7239f9333061d104a6d178b5d2b17ea4564
4
+ data.tar.gz: 9b4976f42a311fb15aeaca69e8b691d6d65b46ed
5
5
  SHA512:
6
- metadata.gz: e628ee3ea5f790c0f94e08d28e6b6103f7263955f806a054de77a6a359f93f2c4dce38297ffc694daf3096f08bb49e211e226545fceaa0224da0ff3a4728c775
7
- data.tar.gz: 851ccddfcdc15fbf01de62956c1243102068b773d7b74832f845ea490a6511c8a4885b37d5171b913c8e48bc9cd6193d240a64a12e9feb0025a38706a4e2cd32
6
+ metadata.gz: 1ce989cc5a16a223345e742d9286c31c7afcf783f88d7fe02f14375ea71c27096954341c3f98e460ac3b5cb5048a3076fd09ac74ff4d6831b583ccca94de1cb4
7
+ data.tar.gz: 16b63ea73bd14004a0d4db5e1d7837ed8620017e8e9b79f12a252dae2522c34e3e8faee3d94f7767d8a55e491e2ed7cffa84f42bca3c5c3902d9fa7fc9e82743
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
 
2
- <!--
2
+
3
3
  <img src="docs/test_center_banner.png" />
4
- -->
5
4
 
6
5
  # test_center plugin 🎯
7
6
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-test_center)
@@ -45,7 +44,7 @@ lane :sweep do
45
44
  test_run_block = lambda do |testrun_info|
46
45
  failed_test_count = testrun_info[:failed].size
47
46
 
48
- if testrun_info[:failed_testcount] > 0
47
+ if failed_test_count > 0
49
48
  UI.important('The run of tests would finish with failures due to fragile tests here.')
50
49
 
51
50
  try_attempt = testrun_info[:try_count]
@@ -63,7 +62,7 @@ lane :sweep do
63
62
  testrun_completed_block: test_run_block
64
63
  )
65
64
  unless result[:failed_testcount].zero?
66
- UI.info("There are #{failed_tests.size} legitimate failing tests")
65
+ UI.info("There are #{result[:failed_testcount]} legitimate failing tests")
67
66
  end
68
67
  end
69
68
  ```
@@ -75,7 +74,7 @@ This plugin makes testing your iOS app easier by providing you actions that give
75
74
  `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.
76
75
 
77
76
  This fastlane plugin includes the following actions:
78
- - [`multi_scan`](#multi_scan): gives you control over how your tests are exercised.
77
+ - [`multi_scan`](#multi_scan-): gives you control over how your tests are exercised.
79
78
  - [`suppress_tests_from_junit`](#suppress_tests_from_junit): from a test report, suppresses tests in your project.
80
79
  - [`suppress_tests`](#suppress_tests): from a provided list, suppresses tests in your project.
81
80
  - [`suppressed_tests`](#suppressed_tests): returns a list of the suppressed tests in your project.
@@ -66,11 +66,11 @@ module Fastlane
66
66
  File.dirname(other_activity_log_path),
67
67
  File.basename(other_activity_log_path, '.*')
68
68
  )
69
- sh("gunzip -k -S .xcactivitylog #{other_activity_log_path}", print_command: false, print_command_output: false)
70
- sh("gunzip -S .xcactivitylog #{base_activity_log_path}", print_command: false, print_command_output: false)
71
- sh("cat #{gunzipped_other_filepath} > #{gunzipped_base_filepath}", print_command: false, print_command_output: false)
69
+ sh("gunzip -k -S .xcactivitylog '#{other_activity_log_path}'", print_command: false, print_command_output: false)
70
+ sh("gunzip -S .xcactivitylog '#{base_activity_log_path}'", print_command: false, print_command_output: false)
71
+ sh("cat '#{gunzipped_other_filepath}' > '#{gunzipped_base_filepath}'", print_command: false, print_command_output: false)
72
72
  FileUtils.rm(gunzipped_other_filepath)
73
- sh("gzip -S .xcactivitylog #{gunzipped_base_filepath}", print_command: false, print_command_output: false)
73
+ sh("gzip -S .xcactivitylog '#{gunzipped_base_filepath}'", print_command: false, print_command_output: false)
74
74
  end
75
75
 
76
76
  def self.collate_testsummaries_plist(base_testsummaries_plist_filepath, other_testsummaries_plist_filepath)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module TestCenter
3
- VERSION = "3.5.1"
3
+ VERSION = "3.5.2"
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.5.1
4
+ version: 3.5.2
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-07-20 00:00:00.000000000 Z
11
+ date: 2018-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json