Robpol86 / terminaltables

Project no longer maintained.
https://github.com/matthewdeanmartin/terminaltables
MIT License
689 stars 70 forks source link

Add tox.ini for tox (http://tox.testrun.org/) #2

Closed msabramo closed 9 years ago

msabramo commented 9 years ago

tox tests across multiple Python versions like Travis CI or Appveyor but it's complementary, because you can run it locally and therefore can test your code without having to commit and push to GitHub.

$ pip install tox
...
$ tox
...
  py26: commands succeeded
  py27: commands succeeded
  pypy: commands succeeded
  py33: commands succeeded
  py34: commands succeeded
  pypy3: commands succeeded
  congratulations :)
Robpol86 commented 9 years ago

Thanks I'll check it out.