The framework.assembly package.
This provides for now what should be a nicer interface for code
generation than that of the Face layer. In terms of abstraction
it's conceptually very similar so the two should probably be
merged as soon as is reasonable.
diff --git a/tools/dockerfile/grpc_python/Dockerfile b/tools/dockerfile/grpc_python/Dockerfile
index d434b47..362227b 100644
--- a/tools/dockerfile/grpc_python/Dockerfile
+++ b/tools/dockerfile/grpc_python/Dockerfile
@@ -24,12 +24,13 @@
&& python2.7 -B -m grpc._adapter._links_test
&& python2.7 -B -m grpc._adapter._lonely_rear_link_test
&& python2.7 -B -m grpc._adapter._low_test
- && python2.7 -B -m grpc._framework.base.packets.implementations_test
- && python2.7 -B -m grpc._framework.face.blocking_invocation_inline_service_test
- && python2.7 -B -m grpc._framework.face.event_invocation_synchronous_event_service_test
- && python2.7 -B -m grpc._framework.face.future_invocation_asynchronous_event_service_test
- && python2.7 -B -m grpc._framework.foundation._later_test
- && python2.7 -B -m grpc._framework.foundation._logging_pool_test
+ && python2.7 -B -m grpc.framework.assembly.implementations_test
+ && python2.7 -B -m grpc.framework.base.packets.implementations_test
+ && python2.7 -B -m grpc.framework.face.blocking_invocation_inline_service_test
+ && python2.7 -B -m grpc.framework.face.event_invocation_synchronous_event_service_test
+ && python2.7 -B -m grpc.framework.face.future_invocation_asynchronous_event_service_test
+ && python2.7 -B -m grpc.framework.foundation._later_test
+ && python2.7 -B -m grpc.framework.foundation._logging_pool_test
# Add a cacerts directory containing the Google root pem file, allowing the interop client to access the production test instance
ADD cacerts cacerts