Github user govind-menon commented on a diff in the pull request:
https://github.com/apache/storm/pull/2930#discussion_r245709584
--- 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 I've added a profile that would execute only on Unix - I didn't add
one for Windows because that would change the file path separators that we're
asserting on. I can change the test to make that configureable if you want
---