I've added a simple tox config to make testing with different Python versions a little easier. It runs the tests with Python2.7 and Python3.4.
To make tox work with the nose test runner, I had to get rid of the with-id option in the nosetests config (--with-id currently breaks the tests when run through tox. There's a fix for that in nose's master branch, but it hasn't been released yet). But given how fast the tests run I think --with-id isn't really needed anyway.
Hi,
I've added a simple tox config to make testing with different Python versions a little easier. It runs the tests with Python2.7 and Python3.4.
To make tox work with the nose test runner, I had to get rid of the
with-id
option in the nosetests config (--with-id currently breaks the tests when run through tox. There's a fix for that in nose's master branch, but it hasn't been released yet). But given how fast the tests run I think--with-id
isn't really needed anyway.Cheers Florian