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