rows
rows copied to clipboard
Add how to setup tox with pyenv to contributing page #241
Adds some instructions on how to get tox
and pyenv
to work together, solving #241. Turns out you have to enable all versions required by tox
with pyenv global
.
I put the instructions in the tox know issues section, and create some sub-headers for that and for man page creation instructions. Is that a good place to put it, or should I create a different section for the pyenv issue?
I also found an issue when building the docs for this, seems like sphinx latest version breaks recommonmark, so I raised it here: #252
@tonnydourado, thanks!
Note: tox
must be installed in a virtualenv not created by pyenv (this use case is for the CI -- a regular developer would use a virtualenv with Python3.6 and run tests with coverage erase && nosetests -dsv --with-yanc --with-coverage --cover-package rows
).
@tonnydourado could you please replace make test
with this command above also?