tox.ini 517 B

12345678910111213141516171819
  1. # tox configuration - if you change anything here, run this to verify:
  2. # fakeroot -u tox --recreate
  3. [tox]
  4. envlist = py{34,35,36},flake8
  5. [testenv]
  6. deps =
  7. -rrequirements.d/development.txt
  8. -rrequirements.d/attic.txt
  9. -rrequirements.d/fuse.txt
  10. commands = py.test -n {env:XDISTN:4} -rs --cov=borg --cov-config=.coveragerc --benchmark-skip --pyargs {posargs:borg.testsuite}
  11. # fakeroot -u needs some env vars:
  12. passenv = *
  13. [testenv:flake8]
  14. changedir =
  15. deps = flake8
  16. commands = flake8 src scripts conftest.py