Re-enable GCP sample test and fix mvn not found

enable test output temporarily for Travis

Revert "enable test output temporarily for Travis"

This reverts commit a797ca75e8c7a48e57f988360e5d57dbb497a6fb.

Resolves #527
This commit is contained in:
Mike Eltsufin
2020-05-20 11:51:59 -04:00
committed by Oleg Zhurakousky
parent 9a481e83a0
commit 4af243ee0b

View File

@@ -24,7 +24,6 @@ import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.test.web.client.TestRestTemplate;
@@ -39,9 +38,8 @@ public class FunctionSampleGcpIntegrationTest {
private CountDownLatch startedSuccessfully = new CountDownLatch(1);
@Test
@Ignore
public void testSample() throws IOException {
Process process = new ProcessBuilder("mvn", "function:run").start();
Process process = new ProcessBuilder("./../../mvnw", "function:run").start();
try {
Executors.defaultThreadFactory().newThread(new OutputCapture(process.getErrorStream())).start();
@@ -88,4 +86,5 @@ public class FunctionSampleGcpIntegrationTest {
}
}
}