tox.ini 509 B

1234567891011121314151617
  1. # Tox (http://tox.testrun.org/) is a tool for running tests
  2. # in multiple virtualenvs. This configuration file will run the
  3. # test suite on all supported python versions. To use it, "pip install tox"
  4. # and then run "tox" from this directory.
  5. [tox]
  6. envlist = py34
  7. [testenv]
  8. commands = nosetests {posargs}
  9. deps = -r{toxinidir}/test-requirements.txt
  10. # At some point we should enable this since tox expects it to exist but
  11. # the code will need pep8ising first.
  12. #[testenv:pep8]
  13. #commands = flake8
  14. #dep = flake8