Advertisement
Guest User

Untitled

a guest
Aug 8th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  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.  
  6. [tox]
  7. toxworkdir = {homedir}/.tox
  8. skipsdist = True
  9. envlist = py35
  10.  
  11. [testenv]
  12. commands = py.test --cov=designer --cov-report html --cov-report term -vv tests/
  13. deps = -r{toxinidir}/dev/test-reqs.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement