Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. test_unit:
  2. <<: *android_config
  3.  
  4. steps:
  5. - checkout
  6. - *restore_gradle_cache
  7. - *restore_gems_cache
  8. - *ruby_dependencies
  9. - *create_keystore_properties
  10. - *decode_android_key
  11. - *android_dependencies
  12. - *save_gradle_cache
  13. - *save_gems_cache
  14.  
  15. - run:
  16. name: Run unit tests
  17. command: bundle exec fastlane unit_tests build_flavor:$BUILD_FLAVOR build_type:$BUILD_TYPE
  18.  
  19. - store_artifacts:
  20. path: app/build/reports/
  21. destination: /reports/
  22.  
  23. - store_test_results:
  24. path: app/build/test-results/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement