mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-03-28 12:21:55 +01:00
Run tests on CI
This commit is contained in:
@@ -14,15 +14,28 @@ jobs:
|
|||||||
# name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
|
# name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
|
||||||
# command: sudo chmod +x ./gradlew
|
# command: sudo chmod +x ./gradlew
|
||||||
- run:
|
- run:
|
||||||
name: Install bundle
|
name: Setup
|
||||||
command: |
|
command: |
|
||||||
gem install bundler
|
gem install bundler
|
||||||
bundle install
|
bundle install
|
||||||
|
mkdir ~/code/reports
|
||||||
|
|
||||||
|
# Detekt
|
||||||
- run:
|
- run:
|
||||||
name: Detekt
|
name: Detekt
|
||||||
command: fastlane detekt
|
command: fastlane detekt
|
||||||
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
|
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
|
||||||
path: reports/detekt
|
path: reports/detekt
|
||||||
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
|
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
|
||||||
path: reports/tests
|
path: reports
|
||||||
|
|
||||||
|
# Tests
|
||||||
|
- run:
|
||||||
|
name: Tests
|
||||||
|
command: fastlane test_all
|
||||||
|
- 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/
|
||||||
|
path: reports
|
||||||
|
|
||||||
# See https://circleci.com/docs/2.0/deployment-integrations/ for deploy examples
|
# See https://circleci.com/docs/2.0/deployment-integrations/ for deploy examples
|
||||||
|
|||||||
@@ -46,6 +46,6 @@ platform :android do
|
|||||||
end
|
end
|
||||||
|
|
||||||
def run_all_tests
|
def run_all_tests
|
||||||
gradle(task: "test --continue")
|
gradle(task: "clean test --continue")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
apply plugin: "de.mannodermaus.android-junit5"
|
||||||
apply from: "$rootProject.projectDir/scripts/detekt.gradle"
|
apply from: "$rootProject.projectDir/scripts/detekt.gradle"
|
||||||
apply from: "$rootProject.projectDir/scripts/dokka.gradle"
|
apply from: "$rootProject.projectDir/scripts/dokka.gradle"
|
||||||
|
|
||||||
@@ -13,4 +14,6 @@ dependencies {
|
|||||||
testImplementation testLibraries.jUnitApi
|
testImplementation testLibraries.jUnitApi
|
||||||
testImplementation testLibraries.mockk
|
testImplementation testLibraries.mockk
|
||||||
testImplementation testLibraries.kluent
|
testImplementation testLibraries.kluent
|
||||||
|
|
||||||
|
testRuntimeOnly testLibraries.jUnitEngine
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,4 +9,8 @@ android {
|
|||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = '1.8'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user