move bc-test to sub folder tools in preparation of other tools

This commit is contained in:
Robert Stoll
2019-10-22 16:03:18 +02:00
parent 256594b518
commit 7811b13613
9 changed files with 25 additions and 14 deletions

View File

@@ -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" &&

View File

@@ -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

0
gr Normal file → Executable file
View File

View File

@@ -112,11 +112,14 @@ include {
}
misc {
_ 'bc-test'
_ 'spec'
kotlinJvmJsAndAndroidIfCi(delegate, 'specs')
kotlinJvmJsAndAndroidIfCi(delegate, 'verbs')
kotlinJvmJsAndAndroidIfCi(delegate, 'verbs-internal')
tools {
_ 'bc-test'
}
}
samples {