We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e02b9ab commit a1986a4Copy full SHA for a1986a4
.travis.yml
@@ -45,4 +45,4 @@ before_script:
45
46
script:
47
- ./gradlew -q assemble
48
- - ./gradlew check -i -S -Pquicktest=true
+ - ./gradlew check -i -S -Ptravistest=true
build.gradle
@@ -183,6 +183,9 @@ configure(subprojects.findAll { it.name != 'util' && it.name != 'mongo-java-driv
183
if (project.buildingWith('quicktest')) {
184
excludeCategories 'category.SlowUnit'
185
}
186
+ if (project.buildingWith('travistest')) {
187
+ excludeCategories 'category.SlowUnit', 'category.SlowUnit'
188
+ }
189
190
191
jacoco { enabled = false }
0 commit comments