Github user srdo commented on a diff in the pull request:
https://github.com/apache/storm/pull/2930#discussion_r245725371
--- 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 --
Thanks, it looks good. I'm wondering if we can get away with also doing
`pip install mock --user` as part of the Maven run, or is that a bad idea?
---