Milestones/ms1 (#16)

* Closes #11

* Closes #13

* Closes #17

* Closes #18

* Closes #19

* Closes #6

* Closes #3

* Closes #12

* Closes #15
This commit is contained in:
Melihcan Aksoy
2019-07-26 13:38:51 +02:00
committed by Melih Aksoy
parent 11889446cb
commit 625776609d
103 changed files with 4367 additions and 716 deletions

View File

@@ -6,6 +6,7 @@ jobs:
- image: circleci/android:api-28
environment:
JVM_OPTS: -Xmx3200m
CODECOV_TOKEN: "cd1376e1-2cfd-49a2-9f25-03ef69056b4d"
steps:
- checkout
- restore_cache:
@@ -32,7 +33,10 @@ jobs:
# Tests
- run:
name: Tests
command: fastlane test_all
command: |
fastlane test_all
./gradlew jacocoTestReport
bash <(curl -s https://codecov.io/bash)
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
path: build/reports/tests
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/