gae-interop-testing: disable serverInProcess tests (#3679)

Tests that require serverInProcess() will not work because the server
is remote.
This commit is contained in:
zpencer 2017-11-07 12:58:49 -08:00 committed by GitHub
parent ef2ec94911
commit 2999d24bc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -147,6 +147,12 @@ public final class OkHttpClientInteropServlet extends HttpServlet {
return false;
}
@Override
protected boolean serverInProcess() {
// Server-side metrics won't be found because the server is running remotely.
return false;
}
// grpc-test.sandbox.googleapis.com does not support these tests
@Override
public void customMetadata() { }

View File

@ -97,6 +97,12 @@ public final class NettyClientInteropServlet extends HttpServlet {
return false;
}
@Override
protected boolean serverInProcess() {
// Server-side metrics won't be found because the server is running remotely.
return false;
}
// grpc-test.sandbox.googleapis.com does not support these tests
@Override
public void customMetadata() { }