fastlane-plugin-accessibility_test 0.1.2 → 0.1.3
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
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e54d3ad854f0c131e46724ddc20420283d99bb4a668bdf8b05b445b9487d38ca
|
4
|
+
data.tar.gz: cc98ea192030b91179b66e96d40440c15b79dcb4f0cd0c69123d7b44b24a4e6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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)",
|
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.
|
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-
|
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
|
-
|
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.
|