Github user govind-menon commented on a diff in the pull request:
https://github.com/apache/storm/pull/2930#discussion_r245726485
--- Diff: storm-client/pom.xml ---
@@ -240,6 +240,29 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <configuration>
+ <executable>python2.7</executable>
--- End diff --
@srdo It's a little messier to do that and better to leave it up to the
environment to do it's own test setup. --user is for then there's no virtualenv
(which will vary from machine to machine) - which is a good example of how the
host itself should do the setup.
---