borg/tox.ini

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
955 B
INI
Raw Normal View History

# tox configuration - if you change anything here, run this to verify:
# fakeroot -u tox --recreate
2013-06-24 11:53:02 +00:00
[tox]
2022-04-09 23:18:13 +00:00
envlist = py{39,310,311}-{none,fuse2,fuse3}
minversion = 3.2
requires =
pkgconfig
cython
wheel
setuptools_scm
2013-06-24 11:53:02 +00:00
[testenv]
package = editable # without this it does not find setup_docs when running under fakeroot
setenv =
fuse2: BORG_FUSE_IMPL=llfuse
fuse3: BORG_FUSE_IMPL=pyfuse3
deps =
fuse2: llfuse
fuse3: pyfuse3
-rrequirements.d/development.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 = *
2016-01-30 21:01:27 +00:00
[testenv:.pkg]
passenv = * # needed by tox4, so env vars are visible for building borg
2016-01-30 21:01:27 +00:00
[testenv:flake8]
skip_sdist=true
skip_install=true
2016-01-30 21:01:27 +00:00
changedir =
deps =
flake8
2016-11-14 20:50:20 +00:00
commands = flake8 src scripts conftest.py
[testenv:mypy]
changedir =
deps =
pytest
mypy
pkgconfig
commands = mypy