fastlane-plugin-xcode_test_reporter 0.1.0 → 0.1.1

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: 2ac971e38b35a0d6123ee3c8493f0f2685a5acf4ddaf506bb86df1fa83bcf61f
4
- data.tar.gz: 524e9e488f6e0cd4eba0a4cc98f61f4128c36db2524ceda8b7fcd1a872aa0f3d
3
+ metadata.gz: 619d7e5afd23bc45a661f7f804314206880f40926cb28001f4bea19994f2c834
4
+ data.tar.gz: 590ed6d82071730885c0d174979630fb1006be6f666787c640753c94eab44797
5
5
  SHA512:
6
- metadata.gz: 93d78765a7acdc9cdc0e606179ad52f119150709683e10d8e6f2a44902e3af76522928428ef5df184c130c274bd3f33a14f09f70c76364706c3afa545f213243
7
- data.tar.gz: 7504d0d9b4f63c591dcc9cb63aa3f051628d166b193f945867eade541926fb368cbe9905bc52c1559fccc01f733cd7267b5a581fefc4943b6ddf215c11fc4e0f
6
+ metadata.gz: 613cca6b5730e4d88451083400f88825a987ee201eeaad4185a39bba20d0e0b06273843d6891b15a8f258e67fbb7f280ec5c8902cabb215eb96b22b95303eda6
7
+ data.tar.gz: '08e93bdb4f9971f8326c0a61ba5525f786989486af4c4e9bd6aa955bfb4ae4ec2a5972f6c86e56d7a812210469f9a1b219afa9dfa15b2cfbc6b9051ff0c36fe3'
@@ -6,6 +6,9 @@ module Fastlane
6
6
  module Actions
7
7
  class XcodeTestReporterAction < Action
8
8
  def self.run(params)
9
+ params[:path] ||= Actions.lane_context[Actions::SharedValues::SCAN_GENERATED_PLIST_FILE] if Actions.lane_context[Actions::SharedValues::SCAN_GENERATED_PLIST_FILE]
10
+ params[:path] ||= Actions.lane_context[Actions::SharedValues::SCAN_DERIVED_DATA_PATH] if Actions.lane_context[Actions::SharedValues::SCAN_DERIVED_DATA_PATH]
11
+
9
12
  options = {}
10
13
  options['--output-directory'] = params[:output_directory] if params[:output_directory]
11
14
  options['--path'] = params[:path] if params[:path]
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module XcodeTestReporter
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-xcode_test_reporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taisuke Hori