Github user weand commented on the issue:
https://github.com/apache/zeppelin/pull/2706
Don't get the Selenium tests running properly.
Instead of the error from Travis CI, I face other errors, that number of
python processes is wrong.
```
21:05:52,088 INFO org.apache.zeppelin.CommandExecutor:46 - Sending command
"bash -c ps aux | grep 'zeppelin_ipython' | grep -v 'grep' | wc -l" to localhost
21:05:52,290 INFO org.apache.zeppelin.CommandExecutor:46 - Sending command
"bash -c ps aux | grep 'zeppelin/interpreter/python/*' | sed -E
'/grep|local-repo/d' | wc -l" to localhost
21:05:56,226 INFO org.apache.zeppelin.CommandExecutor:46 - Sending command
"bash -c ../bin/zeppelin-daemon.sh restart" to localhost
Tests run: 11, Failures: 11, Errors: 0, Skipped: 0, Time elapsed: 471.138
sec <<< FAILURE! - in org.apache.zeppelin.integration.InterpreterModeActionsIT
testPerUserIsolatedAction(org.apache.zeppelin.integration.InterpreterModeActionsIT)
Time elapsed: 186.266 sec <<< FAILURE!
java.lang.AssertionError: The number of python process is
Expected: "1"
but: was "0"
at org.hamcrest
```
I already have ipython + jupyter installed. Also Firefox 31 with Auto
Update disabled.
When starting zeppelin and a python notebook (created by the tests)
manually, I get proper results inside Web GUI. I also see various zeppelin
processes via ps aux. But the grep pipes used in the test doesn't cover them.
Could anyone please assist, who can run the test properly. @soralee ?
---