fastlane-plugin-accessibility_test 0.1.2 → 0.1.3

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
- SHA1:
3
- metadata.gz: 61254ba109ac45004683d1f97af884bc9f84b52b
4
- data.tar.gz: 7f32144c075022b99a40f330d12e04645cd63abb
2
+ SHA256:
3
+ metadata.gz: e54d3ad854f0c131e46724ddc20420283d99bb4a668bdf8b05b445b9487d38ca
4
+ data.tar.gz: cc98ea192030b91179b66e96d40440c15b79dcb4f0cd0c69123d7b44b24a4e6a
5
5
  SHA512:
6
- metadata.gz: 3409d666fe578d06cbb8b38ac41391e50ed72e6d09081b34b256d8dd922d4afbe977a12c862a84e59a73b88c7e53531459c717876e3b5f771f7786707b513804
7
- data.tar.gz: a8bbbfd031b949a2f69f67c1b3be1ec9bd26dfad846abdfbc2fe4edd33ff7a9bf4b2bd3161d56517032d832982b5e65a890a9f9381e45494fa25c1a9e945a854
6
+ metadata.gz: 1c3caebd0fae65026c2102bf13d2b030cc903c48357bc0395ef674446c61bd407b6e82576f14101eca01238e7f24db5bfcd8bc3389b8c3aa156fcb485df4bcd0
7
+ data.tar.gz: 370fe4f762847e9ffc5f599708a33b7a41c67b7497942aafe5af7152d2750be635a8cdfe62c967653b812b026f006a4c7d3c651b95a3bede3ff3c0c2e92f801b
Binary file
@@ -34,8 +34,9 @@ module Fastlane
34
34
 
35
35
  UI.message "Execute accessibility check"
36
36
  executable = File.expand_path('../../../../../bin/accessibility-analyzer.jar', __FILE__)
37
+ test_params = params[:test_params] == nil ? "" : params[:test_params]
37
38
  device_names.each do |device_name|
38
- Action.sh "java -jar #{executable} --target=#{download_dir}/#{device_name}"
39
+ Action.sh "java -jar #{executable} --target=#{download_dir}/#{device_name} #{test_params}"
39
40
  end
40
41
 
41
42
  UI.message "Push screenshots and accessibility meta data from Firebase Test Lab results bucket"
@@ -157,6 +158,11 @@ module Fastlane
157
158
  description: "The path for your android app apk",
158
159
  type: String,
159
160
  optional: false),
161
+ FastlaneCore::ConfigItem.new(key: :test_params,
162
+ env_name: "TEST_PARAMS",
163
+ description: "Parameters for running accessibility check",
164
+ type: String,
165
+ optional: true),
160
166
  FastlaneCore::ConfigItem.new(key: :timeout,
161
167
  env_name: "TIMEOUT",
162
168
  description: "The max time this test execution can run before it is cancelled. Default: 5m (this value must be greater than or equal to 1m)",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AccessibilityTest
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-accessibility_test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takeshi Tsukamoto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-04 00:00:00.000000000 Z
11
+ date: 2019-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -170,8 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
170
170
  - !ruby/object:Gem::Version
171
171
  version: '0'
172
172
  requirements: []
173
- rubyforge_project:
174
- rubygems_version: 2.5.2.3
173
+ rubygems_version: 3.0.3
175
174
  signing_key:
176
175
  specification_version: 4
177
176
  summary: Accessibility test with Firebase Test Lab for Android.