Merge remote-tracking branch 'dakrone/add-noop-it'

Original commit: elastic/x-pack-elasticsearch@780992535c
This commit is contained in:
Lee Hinman 2017-01-09 16:02:04 -07:00
commit 28adc73220
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
package org.elasticsearch.smoketest;
import org.elasticsearch.test.ESIntegTestCase;
public class PreventFailingBuildIT extends ESIntegTestCase {
public void testSoThatTestsDoNotFail() {
// Noop
// This is required because SmokeTestWatcherClientYamlTestSuiteIT
// requires network access, so if network tests are not enable no
// tests will be run in the entire project and all tests will fail.
}
}