mirror of
https://github.com/borgbackup/borg.git
synced 2024-11-15 03:34:38 +03:00
8be6afd9e1
for now, skip fuse for py39 -- llfuse does not support py39 yet use brew update >/dev/null so travis does not complain about too much output
21 lines
512 B
INI
21 lines
512 B
INI
# tox configuration - if you change anything here, run this to verify:
|
|
# fakeroot -u tox --recreate
|
|
|
|
[tox]
|
|
envlist = py{35,36,37,38,39},flake8
|
|
|
|
[testenv]
|
|
deps =
|
|
-rrequirements.d/development.txt
|
|
-rrequirements.d/fuse.txt
|
|
commands = py.test -v -n {env:XDISTN:1} -rs --cov=borg --cov-config=.coveragerc --benchmark-skip --pyargs {posargs:borg.testsuite}
|
|
# fakeroot -u needs some env vars:
|
|
passenv = *
|
|
|
|
[testenv:flake8]
|
|
changedir =
|
|
deps =
|
|
flake8
|
|
pkgconfig
|
|
commands = flake8 src scripts conftest.py
|