Skip a specific test if offline; this test requires network access

This commit is contained in:
Ben Liblit 2018-05-28 11:29:08 -07:00
parent 5cf8b7efe3
commit 32e105a3c0
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,9 @@ dependencies {
test {
environment 'TRAVIS', 1
maxHeapSize = '800M'
if (gradle.startParameter.offline)
exclude '**/FieldBasedJQueryTest.class'
}
task cleanTest(type: Delete) {