Skip to content

Commit a1986a4

Browse files
committed
Updated travis.yml build
Limiting the tests run, to try an stop gradle for travis failing without logging.
1 parent e02b9ab commit a1986a4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ before_script:
4545

4646
script:
4747
- ./gradlew -q assemble
48-
- ./gradlew check -i -S -Pquicktest=true
48+
- ./gradlew check -i -S -Ptravistest=true

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,9 @@ configure(subprojects.findAll { it.name != 'util' && it.name != 'mongo-java-driv
183183
if (project.buildingWith('quicktest')) {
184184
excludeCategories 'category.SlowUnit'
185185
}
186+
if (project.buildingWith('travistest')) {
187+
excludeCategories 'category.SlowUnit', 'category.SlowUnit'
188+
}
186189
}
187190

188191
jacoco { enabled = false }

0 commit comments

Comments
 (0)