Advertisement
Guest User

tox.ini

a guest
Feb 21st, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. [tox]
  2. envlist=py26,py27,lpbuildd-precise
  3.  
  4. [testenv:py26]
  5. setenv=
  6. RUN_CODE_TESTS=0
  7. deps=
  8. mock==0.7.2
  9. pexpect==2.4
  10. ptyprocess==0.4
  11. unittest2
  12.  
  13. [testenv:py27]
  14. setenv=
  15. RUN_CODE_TESTS=1
  16. deps=
  17. mock
  18. pexpect
  19.  
  20. [testenv:lpbuildd-precise]
  21. setenv=
  22. RUN_CODE_TESTS=0
  23. deps=
  24. mock==0.7.2
  25. pexpect==2.4
  26.  
  27. [testenv]
  28. commands=
  29. {envpython} {toxinidir}/setup.py test {posargs}
  30.  
  31. [pep8]
  32. ignore=E402,E501,E731,W503
  33. max-line-length=120
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement