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
This commit is contained in:
Clara Bennett
2015-04-13 15:38:25 -04:00
parent 5a80afbf30
commit d2c2ce9fc3
9 changed files with 42 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
Kurt Griffiths (kgriffs) is the creator and current maintainer of the Falcon framework. Pull requests are always welcome.
Before submitting a pull request, please ensure you have added or updated tests as appropriate, and that all existing tests still pass with your changes on both Python 2 and Python 3. Please also ensure that your coding style follows PEP 8 and doesn't cause pyflakes to complain.
Before submitting a pull request, please ensure you have added or updated tests as appropriate, and that all existing tests still pass with your changes on both Python 2 and Python 3. Please also ensure that your coding style follows PEP 8 and doesn't cause pyflakes to complain.
You can check all this by running the following from within the falcon project directory (requires Python 2.7 and Python 3.3 to be installed on your system):
@@ -63,7 +63,7 @@ Must be one of the following:
* **perf**: A code change that improves performance
* **test**: Adding missing tests
* **chore**: Changes to the build process or auxiliary tools and libraries such as documentation generation
##### Scope
The scope could be anything specifying place of the commit change. For example: `$location`, `$browser`, `$compile`, `$rootScope`, `ngHref`, `ngClick`, `ngView`, etc...
@@ -80,6 +80,16 @@ Just as in the **subject**, use the imperative, present tense: "change" not "cha
##### Footer
The footer should contain any information about **Breaking Changes** and is also the place to reference GitHub issues that this commit **Closes**.
### Running tests against Jython
In addition to the tests run with tox against cpython, cython, and pypy versions, Travis runs tests against jython 2.7 outside of tox. If you need to run these tests locally, do the following:
* Install JDK 7 or better
* run `travis_scripts/install_jython2.7.sh` -- this will install jython at `~/jython`
* Install testing requirements `~/jython/bin/pip install -r tools/test-requires`
* May need to set `export JYTHON_HOME=~/jython` first
* Run tests `~/jython/bin/nosetests`
Note: coverage does not support Jython, so the coverage tests will fail.
[ajs]: https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md#commit
[docstrings]: http://sphinxcontrib-napoleon.readthedocs.org/en/latest/example_google.html#example-google-style-python-docstrings
[goog-style]: http://google-styleguide.googlecode.com/svn/trunk/pyguide.html#Comments