mirror of
https://github.com/jlengrand/atrium.git
synced 2026-03-10 08:01:19 +00:00
move bc-test to sub folder tools in preparation of other tools
This commit is contained in:
11
build.gradle
11
build.gradle
@@ -35,8 +35,8 @@ buildscript {
|
||||
!it.name.contains("robstoll") &&
|
||||
it.name != "${rootProject.name}-spec" &&
|
||||
!it.name.startsWith("${rootProject.name}-specs") &&
|
||||
it.name != "${rootProject.name}-bc-test" &&
|
||||
!(it.projectDir.path.contains("/samples/") || it.projectDir.path.contains("\\samples\\"))
|
||||
!(it.projectDir.path.contains("/samples/") || it.projectDir.path.contains("\\samples\\")) &&
|
||||
!(it.projectDir.path.contains("/misc/tools/") || it.projectDir.path.contains("\\misc\\tools\\"))
|
||||
}
|
||||
ghPages_version = rootProject.version
|
||||
srcKotlin = 'src/main/kotlin'
|
||||
@@ -58,7 +58,8 @@ buildscript {
|
||||
// does not make sense to listen specs in coverage
|
||||
it.name != "${rootProject.name}-spec" &&
|
||||
!it.name.startsWith("${rootProject.name}-specs") &&
|
||||
!(it.projectDir.path.contains("/samples/") || it.projectDir.path.contains("\\samples\\"))
|
||||
!(it.projectDir.path.contains("/samples/") || it.projectDir.path.contains("\\samples\\")) &&
|
||||
!(it.projectDir.path.contains("/misc/tools/") || it.projectDir.path.contains("\\misc\\tools\\"))
|
||||
},
|
||||
jacocoProjects:
|
||||
(subprojects - deprecatedProjects - translationProjects - jsSampleProjects).findAll {
|
||||
@@ -70,8 +71,8 @@ buildscript {
|
||||
it.name != "${rootProject.name}-core-robstoll-jvm" &&
|
||||
it.name != "${rootProject.name}-spec" &&
|
||||
!it.name.startsWith("${rootProject.name}-specs") &&
|
||||
it.name != "${rootProject.name}-bc-test" &&
|
||||
!it.path.contains('examples') &&
|
||||
!(it.projectDir.path.contains("/samples/") || it.projectDir.path.contains("\\samples\\")) &&
|
||||
!(it.projectDir.path.contains("/misc/tools/") || it.projectDir.path.contains("\\misc\\tools\\")) &&
|
||||
//TODO remove with 1.0.0
|
||||
it.name != "${rootProject.name}-assertions" &&
|
||||
it.name != "${rootProject.name}-core-api-deprecated" &&
|
||||
|
||||
23
codecov.yml
23
codecov.yml
@@ -4,15 +4,19 @@ ignore:
|
||||
- "domain/builders/**/creating/**Builder.kt"
|
||||
- "domain/builders/**/creating/*Builders.kt"
|
||||
|
||||
# TODO remove with 1.0.0
|
||||
- "misc/atrium-assertions/**/*"
|
||||
- "misc/specs/**/*"
|
||||
- "misc/atrium-bc-test/**/*"
|
||||
- "apis/**/assertions/**/*"
|
||||
- "domain/api/**/assertions/**/*"
|
||||
- "domain/atrium-domain-api-deprecated/**/*"
|
||||
- "**/IAtriumFactory.kt"
|
||||
- "**/AtriumFactory.kt"
|
||||
|
||||
- "misc/tools/**/*"
|
||||
- "samples/**/*"
|
||||
|
||||
# TODO remove with 1.0.0
|
||||
- "misc/atrium-spec/**/*"
|
||||
# - "misc/atrium-assertions/**/*"
|
||||
# - "apis/**/assertions/**/*"
|
||||
# - "domain/api/**/assertions/**/*"
|
||||
# - "domain/atrium-domain-api-deprecated/**/*"
|
||||
# - "**/IAtriumFactory.kt"
|
||||
# - "**/AtriumFactory.kt"
|
||||
|
||||
|
||||
flags:
|
||||
@@ -28,6 +32,9 @@ flags:
|
||||
misc:
|
||||
paths:
|
||||
- misc/
|
||||
translations:
|
||||
paths:
|
||||
- translations/
|
||||
|
||||
coverage:
|
||||
range: 70..95
|
||||
|
||||
@@ -112,11 +112,14 @@ include {
|
||||
}
|
||||
|
||||
misc {
|
||||
_ 'bc-test'
|
||||
_ 'spec'
|
||||
kotlinJvmJsAndAndroidIfCi(delegate, 'specs')
|
||||
kotlinJvmJsAndAndroidIfCi(delegate, 'verbs')
|
||||
kotlinJvmJsAndAndroidIfCi(delegate, 'verbs-internal')
|
||||
|
||||
tools {
|
||||
_ 'bc-test'
|
||||
}
|
||||
}
|
||||
|
||||
samples {
|
||||
|
||||
Reference in New Issue
Block a user