public void testEnvironment() throws Exception {
String[] command =
new String[]{
"python", "-c", "import os; print os.environ['PUSHYTEST']"};
RemoteProcessBuilder pb =
new RemoteProcessBuilder(client, command);
pb.environment().put("PUSHYTEST", "aloha");
Process proc = pb.start();
try
{
BufferedReader reader =
new BufferedReader(