tox.ini 503 B

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