Hi Build Team! I have some integration tests I have created for a command line application. The tests use python and the pexpect library for interacting with the application through stdin, stdout, stderr.
I've added these tests to a git branch and I've set up a jenkins CI job: https://builds.apache.org/view/All/job/Stratos-CLI-IntegrationTest-Branch-Build/1/console The build is failing because pexpect isn't available: ... [INFO] --- exec-maven-plugin:1.3:exec (python-test-common) @ org.apache.stratos.cli --- Downloading: http://dist.wso2.org/maven2/org/apache/commons/commons-exec/1.2/commons-exec-1.2.pom Downloading: http://dist.wso2.org/snapshots/maven2/org/apache/commons/commons-exec/1.2/commons-exec-1.2.pom Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.2/commons-exec-1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.2/commons-exec-1.2.pom (11 KB at 820.6 KB/sec) Downloading: http://dist.wso2.org/maven2/org/apache/commons/commons-exec/1.2/commons-exec-1.2.jar Downloading: http://dist.wso2.org/snapshots/maven2/org/apache/commons/commons-exec/1.2/commons-exec-1.2.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.2/commons-exec-1.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.2/commons-exec-1.2.jar (53 KB at 1284.9 KB/sec) Traceback (most recent call last): File "test_common.py", line 23, in <module> import pexpect ImportError: No module named pexpect Would the build team consider installing this library? The INSTALL document for pexpect is here: https://github.com/pexpect/pexpect/blob/master/INSTALL Many thanks, Chris - chs...@apache.org