Closed michaelboulton closed 8 years ago
Hi,
that's great, thanks ! Can you also update tox.ini to test for python 3 too and check it doesn't break elsewhere in either version ?
I guess something like this should work (not tested):
[tox]
envlist = py{27},py{34}
[testenv]
deps =
check-manifest
readme_renderer
flake8
pytest
commands =
check-manifest --ignore tox.ini,test*,deploy.sh
python setup.py check -m -r -s
flake8 debinterface
py.test test
[flake8]
exclude = .tox,*.egg,build,data,deploy.sh
select = E,W,F
This integrates some proper python 3 support: