(cmd string, args ...string)
| 720 | } |
| 721 | |
| 722 | func (e *DockerEnvironment) exec(cmd string, args ...string) *exec.Cmd { |
| 723 | return e.execContext(context.Background(), cmd, args...) |
| 724 | |
| 725 | } |
| 726 | |
| 727 | func (e *DockerEnvironment) execContext(ctx context.Context, cmd string, args ...string) *exec.Cmd { |
| 728 | c := NewCommand(cmd, args...) |
no test coverage detected