alex / rply

An attempt to port David Beazley's PLY to RPython, and give it a cooler API.
BSD 3-Clause "New" or "Revised" License
381 stars 60 forks source link

Added tox configuration #20

Closed DasIch closed 10 years ago

DasIch commented 10 years ago

In order to do #1 I would like a good way to test the documentation, the easiest approach for that is using tox, so I've made this pull request to add a tox configuration file. To remove duplication I've changed the travis configuration to simply call tox.

Unfortunately it's not possible to just run tox like PYTHONPATH=../wherever/pypy/is tox as this causes a crash at the moment. The workaround I've found relies on the {env:} substitution tox allows in configuration files, unfortunately this means that tox now always has to be invoked with PYPY=./wherever/pypy/is tox.

DasIch commented 10 years ago

These commits should address the issues mentioned in the comments.

alex commented 10 years ago

Awesome thanks so much!