mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 01:37:20 +00:00
ecad0ed53a
# Conflicts: ... everywhere ... # .travis.yml # Vagrantfile # borg/testsuite/key.py # docs/changes.rst # docs/quickstart.rst # docs/usage.rst # docs/usage/upgrade.rst.inc # src/borg/archive.py # src/borg/archiver.py # src/borg/crypto.pyx # src/borg/helpers.py # src/borg/key.py # src/borg/remote.py # src/borg/repository.py # src/borg/testsuite/archive.py # src/borg/testsuite/archiver.py # src/borg/testsuite/crypto.py # src/borg/testsuite/helpers.py # src/borg/testsuite/repository.py # src/borg/upgrader.py # tox.ini
19 lines
504 B
INI
19 lines
504 B
INI
# tox configuration - if you change anything here, run this to verify:
|
|
# fakeroot -u tox --recreate
|
|
|
|
[tox]
|
|
envlist = py{34,35,36},flake8
|
|
|
|
[testenv]
|
|
deps =
|
|
-rrequirements.d/development.txt
|
|
-rrequirements.d/attic.txt
|
|
-rrequirements.d/fuse.txt
|
|
commands = py.test -n 8 -rs --cov=borg --cov-config=.coveragerc --benchmark-skip --pyargs {posargs:borg.testsuite}
|
|
# fakeroot -u needs some env vars:
|
|
passenv = *
|
|
|
|
[testenv:flake8]
|
|
changedir =
|
|
deps = flake8
|
|
commands = flake8 src scripts conftest.py
|