summaryrefslogtreecommitdiff
path: root/tox.ini
blob: c07c3e9c0873eefec961dc5520f13a23e97b4ff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[tox]
envlist = py{27,35,36,37,38,39,310}-compilelibs,pep8,docs

[testenv]
deps =
  -r{toxinidir}/test-requirements.txt
commands=
    pytest -v test/
setenv = LIBERASURECODE_DIR={envdir}/liberasurecode
    ISAL_DIR={envdir}/isa-l
    JERASURE_DIR={envdir}/jerasure
    GFCOMPLETE_DIR={envdir}/gf-complete
passenv = LIBERASURECODE_REF
allowlist_externals =
    compilelibs: {toxinidir}/tools/pip-install-with-liberasurecode.sh
install_command =
    compilelibs: {toxinidir}/tools/pip-install-with-liberasurecode.sh {opts} {packages}
    !compilelibs: pip install {opts} {packages}

[testenv:pep8]
skip_install = True
deps=
    hacking
commands=
    flake8 pyeclib/ setup.py test/

[testenv:venv]
commands = {posargs}

[testenv:docs]
deps =
  -r{toxinidir}/doc/requirements.txt
commands = python setup.py build_sphinx

[flake8]
# H101: Use TODO(NAME)
# H404: multi line docstring should start without a leading new line
# H405: multi line docstring summary not separated with an empty line
# W504: line break after binary operator
ignore = H101,H404,H405,W504
max-line-length = 88