Skip to content

Commit

Permalink
Release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Mądry committed Mar 6, 2019
1 parent 32018df commit ae865be
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
# Firebase Test Lab Plugin for Android
[![Kotlin version badge](https://img.shields.io/badge/kotlin-1.1.60-blue.svg)](http://kotlinlang.org/)
[![Kotlin version badge](https://img.shields.io/badge/kotlin-2.0.0-blue.svg)](http://kotlinlang.org/)
[![License](https://img.shields.io/crates/l/rustc-serialize.svg)](https://github.com/piotrmadry/FirebaseTestLab-Android/blob/master/LICENSE)

![firebase](https://i.ytimg.com/vi/4_ZEEX1x17k/maxresdefault.jpg)

## Introduction
Firebase is actually the most popular developer tool platform, wchich handles almost every aspect of the app. It also gives possibility to run Android Tests on physical or virtual devices hosted in a Google data center through [Firebase Test Lab](https://firebase.google.com/docs/test-lab/). In order to fully exploit the potential of this tool I've created plugin to simplify process of creating tests configurations. It allows to run tests locally as well as on you CI server.
Plugin for which integrates Firebase Test Lab with Android Project. Simplify running Android Tests on Firebase platform locally as well as on using Continuous integration.

### Contributors
- [Jacek Marchwicki](https://github.com/jacek-marchwicki)

#### Available features

- Automatic installation of `gcloud` command line tool
- Creating tasks for testable `buildType`[By default it is `debug`. If you want to change it use `testBuildType "buildTypeName"`]
- Creating tasks for every defined device and configuration separetly [ including Instrumented / Robo tests ]
- Creating tasks for every defined device and configuration separately [ including Instrumented / Robo tests ]
- Creating tasks which runs all configurations at once
- Ability to download tests results to specific location
- Ability to clear directory inside bucket before test run
- Instrumented tests sharding

#### Benefits

- Readability
- Simplicity
- Remote and Local Testing
- Compatible with Gradle 3.0
- Instrumented Tests sharding for parallel test execution

#### Setup

Expand Down Expand Up @@ -120,6 +122,9 @@ firebaseTestLab {
// If you are using ABI splits you can remove testing universal APK
// testUniversalApk = false
// For instrumented test you can specify number of shards, which allows to split all the tests for [numShards] times and execute them in parallel
// numShards = 4
// You can set timeout (in seconds) for test
// timeout = 6000
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apply plugin: "com.gradle.plugin-publish"
apply plugin: "org.gradle.kotlin.kotlin-dsl"

group = "firebase.test.lab"
version = "1.1.7"
version = "2.0.0"

gradlePlugin {
plugins {
Expand Down

0 comments on commit ae865be

Please sign in to comment.