tox.ini 239 B

12345678910111213141516
  1. [tox]
  2. envlist=flake8, py27
  3. skipsdist=True
  4. [testenv]
  5. deps=-rrequirements.txt
  6. passenv=HOST_ARCH ARCH
  7. commands=py.test -s --durations=20 rostest {posargs}
  8. [testenv:flake8]
  9. deps=flake8
  10. commands=flake8 rostest
  11. [flake8]
  12. max-line-length = 120