Remove "travis" in source code

This commit is contained in:
Philipp Dallig 2020-12-02 15:06:08 +01:00
parent 6790b6e423
commit e865f2fc12
3 changed files with 4 additions and 6 deletions

View file

@ -70,8 +70,8 @@ public class PythonUtils {
}
public static String getLocalIP(Properties properties) {
// zeppelin.python.gatewayserver_address is only for unit test on travis.
// Because the FQDN would fail unit test on travis ci.
// zeppelin.python.gatewayserver_address is only for unit test.
// Because the FQDN would fail unit test.
String gatewayserver_address =
properties.getProperty("zeppelin.python.gatewayserver_address");
if (gatewayserver_address != null) {

View file

@ -68,7 +68,7 @@ public abstract class ZeppelinSparkClusterTest extends AbstractTestRestApi {
public static final String SPARK_MASTER_PROPERTY_NAME = "spark.master";
//This is for only run setupSparkInterpreter one time for each spark version, otherwise
//each test method will run setupSparkInterpreter which will cost a long time and may cause travis
//each test method will run setupSparkInterpreter which will cost a long time and may cause a
//ci timeout.
//TODO(zjffdu) remove this after we upgrade it to junit 4.13 (ZEPPELIN-3341)
private static Set<String> verifiedSparkVersions = new HashSet<>();

View file

@ -29,9 +29,7 @@ import org.junit.Before;
import org.junit.Test;
/**
* In the future, test may use minikube on travis for end-to-end test
* https://github.com/LiliC/travis-minikube
* https://blog.travis-ci.com/2017-10-26-running-kubernetes-on-travis-ci-with-minikube
* In the future, test may use minikube for end-to-end test
*/
public class K8sStandardInterpreterLauncherTest {
@Before