Skip to content

Commit 93d3946

Browse files
author
Tad Fisher
committed
Version 0.5.1
1 parent 81e3f03 commit 93d3946

File tree

2 files changed

+42
-40
lines changed

2 files changed

+42
-40
lines changed

CHANGELOG.md

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
# Changelog
22

3-
## [unreleased]
3+
## [0.5.1] - 2020-11-13
44

55
### Added
66

7-
- Added a `clientDetails` property to the `testLab` extension and both `instrumentation` and `robo` tests. This is a map
8-
of arbitrary keys and values passed along with each test, which can be retrieved via Firebase Cloud Functions after
9-
the test has completed.
10-
7+
- Added a `clientDetails` property to the `testLab` extension and both `instrumentation` and `robo`
8+
tests. This is a map of arbitrary keys and values passed along with each test, which can be
9+
retrieved via Firebase Cloud Functions after the test has completed.
10+
1111
### Fixed
1212

13-
- Fixed improper formatting of test targets; e.g. "`classcom.foo.Bar`" instead of "`class com.foo.Bar`".
13+
- Fixed improper formatting of test targets; e.g. "`classcom.foo.Bar`" instead of "`class
14+
com.foo.Bar`".
1415

1516
## [0.5.0] - 2020-11-13
1617

1718
### Added
1819

19-
- Create additional test tasks for app bundles. These are named 'testLab${test}BundleTest'. Existing tests for APKs are
20-
not affected.
20+
- Create additional test tasks for app bundles. These are named `testLab${test}BundleTest`. Existing
21+
tests for APKs are not affected.
2122
- Support for split APKs, which are passed via the `additionalApks` property.
2223
- Support for additional Robo test options:
2324
- `script`: File containing scripted actions taken by the Robo test runner.
@@ -38,9 +39,9 @@
3839
### Changed
3940

4041
- Require Android Gradle Plugin 4.1 in order to support app bundles using the new AGP DSL.
41-
- Split upload tasks into finer-grained units. Out-of-date checks for these tasks are now scoped to the task outputs
42-
which produce the files. For example, the "upload APK" task will not be considered out-of-date if the APKs have not
43-
changed since being uploaded.
42+
- Split upload tasks into finer-grained units. Out-of-date checks for these tasks are now scoped to
43+
the task outputs which produce the files. For example, the "upload APK" task will not be
44+
considered out-of-date if the APKs have not changed since being uploaded.
4445

4546
### Fixed
4647

@@ -59,7 +60,8 @@
5960

6061
- Initial public release.
6162

62-
[unreleased]: https://github.com/SimpleFinance/gradle-test-lab-plugin/compare/v0.5.0...HEAD
63+
[unreleased]: https://github.com/SimpleFinance/gradle-test-lab-plugin/compare/v0.5.1...HEAD
64+
[0.5.1]: https://github.com/SimpleFinance/gradle-test-lab-plugin/compare/v0.5.0...v0.5.1
6365
[0.5.0]: https://github.com/SimpleFinance/gradle-test-lab-plugin/compare/v0.4.1...v0.5.0
6466
[0.4.1]: https://github.com/SimpleFinance/gradle-test-lab-plugin/compare/v0.4.0...v0.4.1
6567
[0.4.0]: https://github.com/SimpleFinance/gradle-test-lab-plugin/releases/tag/v0.4.0

README.md

+28-28
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ work, but are not supported.
1919

2020
| Plugin version | Gradle version | Android Gradle version |
2121
| -------------- | -------------- | ---------------------- |
22-
| 0.5.0 | 6.7 | 4.1.1 |
22+
| 0.5.1 | 6.7 | 4.1.1 |
2323
| 0.4.0 | 6.5 | 4.0.0 |
2424
| 0.3.3 | 5.4.1 | 3.4.1 |
2525
| 0.3.2 | 5.3 | 3.3.2 |
@@ -190,10 +190,10 @@ testLab {
190190
// Extra values to send with all tests for use with Cloud Functions.
191191
//
192192
// For each test, these values will be merged with the test's `clientDetails`,
193-
// with the test's values taking priority for identical keys.
193+
// with the test's values taking priority for identical keys.
194194
//
195195
// These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions script. See the
196-
// Firebase documentation for more information:
196+
// Firebase documentation for more information:
197197
// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details]
198198
clientDetails.put("pull-request", "https://github.com/owner/repo/pulls/1234")
199199

@@ -214,7 +214,7 @@ testLab {
214214
// Test targets to execute. Optional; if empty, all targets in the module will
215215
// be ran.
216216
targets {
217-
217+
218218
// Include all tests in the given packages.
219219
packages.add("com.my.package.name")
220220

@@ -229,7 +229,7 @@ testLab {
229229
classes.add("!com.package.Class")
230230
classes.add("!com.package.Class#method")
231231

232-
// Include tests annotated with *all* of the given annotations.
232+
// Include tests annotated with *all* of the given annotations.
233233
annotations.add("com.package.Annotation")
234234

235235
// Exclude tests annotated with *any* of the given annotations.
@@ -240,17 +240,17 @@ testLab {
240240

241241
// Exclude tests listed in a file located at the given path on the target device.
242242
excludeFile.set("/data/local/tmp/exclude.txt")
243-
243+
244244
// Include tests matching the given regular expression.
245245
regex.set("""^com\.package\.(MyClass|OtherClass)#test.+""")
246246

247247
// Include tests annotated with `SmallTest`, `MediumTest`, or `LargeTest` annotations.
248248
size.set(TestSize.LARGE) // Alternatives: TestSize.MEDIUM, TestSize.SMALL
249-
249+
250250
// Uniformly distribute test targets among this number of shards. Shards are
251251
// executed in parallel across all devices.
252252
shardCount.set(10)
253-
253+
254254
// Add an explicit shard of test targets. Shards are executed in parallel
255255
// across all devices.
256256
shard {
@@ -325,26 +325,26 @@ testLab {
325325
text(resourceName = "username", inputText = "alice")
326326
}
327327

328-
// A JSON file with a sequence of actions Robo should perform as a prologue for the
328+
// A JSON file with a sequence of actions Robo should perform as a prologue for the
329329
// crawl. Optional.
330330
script.set(file("robo-script.json"))
331-
331+
332332
// Configures the starting intents used to launch the app for the crawl. Optional.
333333
startingIntents {
334-
334+
335335
// Add an intent that starts the main launcher activity.
336336
launcherActivity()
337337

338338
// Add an intent that starts the main launcher activity.
339339
launcherActivity {
340-
340+
341341
// Timeout in seconds for the intent.
342342
timeout.set(10)
343343
}
344344

345345
// Add a starting intent specified by an action, uri, and categories.
346346
startActivity {
347-
347+
348348
// Action name. Required.
349349
action.set("anroid.intent.action.VIEW")
350350

@@ -395,10 +395,10 @@ testLab {
395395
// Extra values to send with all tests for use with Cloud Functions.
396396
//
397397
// For each test, these values will be merged with the test's `clientDetails`,
398-
// with the test's values taking priority for identical keys.
398+
// with the test's values taking priority for identical keys.
399399
//
400400
// These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions script. See the
401-
// Firebase documentation for more information:
401+
// Firebase documentation for more information:
402402
// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details]
403403
clientDetails.put("pull-request", "https://github.com/owner/repo/pulls/1234")
404404
@@ -419,7 +419,7 @@ testLab {
419419
// Test targets to execute. Optional; if empty, all targets in the module will
420420
// be ran.
421421
targets {
422-
422+
423423
// Include all tests in the given packages.
424424
packages.add("com.my.package.name")
425425
@@ -434,7 +434,7 @@ testLab {
434434
classes.add("!com.package.Class")
435435
classes.add("!com.package.Class#method")
436436
437-
// Include tests annotated with *all* of the given annotations.
437+
// Include tests annotated with *all* of the given annotations.
438438
annotations.add("com.package.Annotation")
439439
440440
// Exclude tests annotated with *any* of the given annotations.
@@ -445,17 +445,17 @@ testLab {
445445
446446
// Exclude tests listed in a file located at the given path on the target device.
447447
excludeFile = "/data/local/tmp/exclude.txt"
448-
448+
449449
// Include tests matching the given regular expression.
450450
regex = $/^com\.package\.(MyClass|OtherClass)#test.+/$
451451
452452
// Include tests annotated with `SmallTest`, `MediumTest`, or `LargeTest` annotations.
453453
size = TestSize.LARGE // Alternatives: TestSize.MEDIUM, TestSize.SMALL
454-
454+
455455
// Uniformly distribute test targets among this number of shards. Shards are
456456
// executed in parallel across all devices.
457457
shardCount.set(10)
458-
458+
459459
// Add an explicit shard of test targets. Shards are executed in parallel
460460
// across all devices.
461461
shard {
@@ -530,10 +530,10 @@ testLab {
530530
text("username", "alice")
531531
}
532532
533-
// A JSON file with a sequence of actions Robo should perform as a prologue for the
533+
// A JSON file with a sequence of actions Robo should perform as a prologue for the
534534
// crawl. Optional.
535535
script = file("robo-script.json")
536-
536+
537537
// Configures the starting intents used to launch the app for the crawl. Optional.
538538
startingIntents {
539539
@@ -588,11 +588,11 @@ additionalApks.from(
588588

589589
// Extra values to send with this test for use with Cloud Functions.
590590
//
591-
// These values will be merged with `testLab.clientDetails`, with the values from this
591+
// These values will be merged with `testLab.clientDetails`, with the values from this
592592
// test overriding existing values with identical keys.
593593
//
594-
// These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
595-
// script. See the Firebase documentation for more information:
594+
// These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
595+
// script. See the Firebase documentation for more information:
596596
// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details
597597
clientDetails.put("test-name", name)
598598

@@ -692,11 +692,11 @@ additionalApks.from(
692692
693693
// Extra values to send with this test for use with Cloud Functions.
694694
//
695-
// These values will be merged with `testLab.clientDetails`, with the values from this
695+
// These values will be merged with `testLab.clientDetails`, with the values from this
696696
// test overriding existing values with identical keys.
697697
//
698-
// These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
699-
// script. See the Firebase documentation for more information:
698+
// These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
699+
// script. See the Firebase documentation for more information:
700700
// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details
701701
clientDetails.put("test-name", name)
702702

0 commit comments

Comments
 (0)