tox.ini 252 B

12345678910111213141516
  1. [tox]
  2. envlist=flake8, py34
  3. [testenv]
  4. deps=-rrequirements.txt
  5. changedir={toxinidir}
  6. commands=py.test --durations=20 {posargs}
  7. [testenv:flake8]
  8. deps=-rrequirements.txt
  9. changedir={toxinidir}
  10. commands=flake8 rancherostest
  11. [flake8]
  12. max-line-length = 120