MarginaliaSearch/srcsets.gradle
Viktor Lofgren 9eb16cb667 (test) Remove tests from fast suite
Adding a new @Tag("flaky") for tests that do not reliably return successes.  These may still be valuable during development, but should not run in CI.

Also tagging a few of the slower tests with the old @Tag("slow"), to speed up the run-time.
2024-11-17 19:45:59 +01:00

44 lines
1.0 KiB
Groovy

/** Configures the source sets for the code/ subprojects.
*
* Ideally this would have been done in the root build.gradle file, but due to disagreements
* between Gradle and IntelliJ's gradle plugin about how to interpret the sourceSets block
* when applied to subprojects from the root project, this has to be done in each subproject.
* */
apply plugin: 'java'
test {
maxHeapSize = "8G"
useJUnitPlatform()
}
tasks.register('fastTests', Test) {
maxHeapSize = "8G"
useJUnitPlatform {
excludeTags "slow"
excludeTags "flaky"
}
}
sourceSets {
main {
java {
srcDirs = [
'java',
'build/generated/source/proto/main/grpc',
'build/generated/source/proto/main/java'
]
}
resources {
srcDirs = [ 'resources' ]
}
}
test {
java {
srcDirs = [ 'test' ]
}
resources {
srcDirs = [ 'test-resources' ]
}
}
}