Files
deb-python-falcon/travis_scripts/install.sh
Clara Bennett d2c2ce9fc3 feat(general): support Jython 2.7rc2
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
2015-04-14 16:40:31 -04:00

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