purcell / airspeed

A lightweight Python template engine compatible with Velocity, used in OpenStack
Other
91 stars 37 forks source link

Add tox configuration #18

Closed flofuchs closed 9 years ago

flofuchs commented 9 years ago

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

purcell commented 9 years ago

Thanks Florian!