Fix manual docker command output for Python.#13411
Conversation
|
nathanielmanistaatgoogle
left a comment
There was a problem hiding this comment.
Looks mostly good; thanks for the fix!
There was a problem hiding this comment.
Any desire to add a v1.7.x tag to this list?
| @@ -0,0 +1,20 @@ | |||
| #!/bin/bash | |||
| echo "Testing ${docker_image:=grpc_interop_python:797ca293-94e8-48d4-92e9-a4d52fcfcca9}" | |||
There was a problem hiding this comment.
It's surprising to me that fixing this problem involves adding this whole large file to the codebase - was this an inadvertent addition or does this need to be here?
There was a problem hiding this comment.
This is the test commands file that's needed for every language by the framework. Previously I was just testing locally.
There was a problem hiding this comment.
Well... okay.
There was a problem hiding this comment.
This is the current design. Here's the background: we debated on whether to create separate file for test cases for bake them into the images. Folks voted for the first, hence the need of these files checked in. But as I took over this project and started expansion, I felt the 2nd option probably works better. But it'll require a major architectural change.
|
|
|
|
1 similar comment
|
|
| @@ -0,0 +1,20 @@ | |||
| #!/bin/bash | |||
| echo "Testing ${docker_image:=grpc_interop_python:797ca293-94e8-48d4-92e9-a4d52fcfcca9}" | |||
There was a problem hiding this comment.
Well... okay.
|
That echo should probably be removed. I'll do a cleanup in a separate PR as it's not Python specific. |
|
|
Need to escape " in the Python client command when saving it to the manual log.
This also fixes #13230.