Does not appear to require any changes to the actual library code, only to the tests Jython 2.7 does not have virtualenv support yet, so it can't play with tox. Once that support comes through, .travis.yml should be able to be returned to its former elegance - Ignore Jython py.class files - Run tests with Jython on Travis - Use threading instead of multiprocessing, because Jython does not have a multiprocessing module - Fix utf encoding specification - Apparently Jython is more finicky about the formatting of this - Accommodate Java time precision in middleware tests - Java does not do timestamps with better than ms precision Closes #458
7 lines
180 B
Bash
Executable File
7 lines
180 B
Bash
Executable File
if [ "$JYTHON" = "true" ]; then
|
|
travis_scripts/install_jython2.7.sh
|
|
$HOME/jython/bin/pip install -r tools/test-requires
|
|
else
|
|
pip install tox coveralls --use-mirrors
|
|
fi
|