Skip to content

Instantly share code, notes, and snippets.

@xavarius
Last active April 1, 2020 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xavarius/6132a1ed16bdd944d3cbe0e9cf4ca2b3 to your computer and use it in GitHub Desktop.
Save xavarius/6132a1ed16bdd944d3cbe0e9cf4ca2b3 to your computer and use it in GitHub Desktop.
Bitrise CI configuration for Android Unit Testing
_UnitTests_Flavour_Agnostic_Modules:
steps:
- gradle-unit-test@1.0.5:
inputs:
- gradlew_file_path: "./gradlew"
- unit_test_task: ":data:testDebugUnitTest"
- gradle_file: "./build.gradle"
title: "Data module unit testing"
- gradle-unit-test@1.0.5:
inputs:
- gradlew_file_path: "./gradlew"
- unit_test_task: ":domain:test"
- gradle_file: "./build.gradle"
title: "Domain unit testing"
- gradle-unit-test@1.0.5:
inputs:
- gradlew_file_path: "./gradlew"
- unit_test_task: ":feature1:test"
- gradle_file: "./build.gradle"
title: "Feature1 unit testing"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment