forked from ecmwf/magics-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
31 lines (25 loc) · 794 Bytes
/
tox.ini
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
[tox]
envlist = qc, py37, py36, py35, pypy3, deps, py27, pypy2
[testenv]
passenv = WHEELHOUSE PIP_FIND_LINKS PIP_WHEEL_DIR PIP_INDEX_URL
setenv = PYTHONPATH = {toxinidir}
deps = -r{toxinidir}/ci/requirements-tests.txt
commands = pytest -v --flakes --cache-clear --basetemp={envtmpdir} {posargs}
[testenv:docs]
deps = -r{toxinidir}/ci/requirements-docs.txt
commands = sphinx-build -W -b html docs build/sphinx/html
[testenv:qc]
basepython = python3.6
# needed for pytest-cov
usedevelop = true
commands = pytest -v --flakes --pep8 --mccabe --cov=magics --cov-report=html --cache-clear --basetemp={envtmpdir} {posargs}
[testenv:deps]
deps =
commands = python setup.py test
[flake8]
; ignore = E226,E302,E41
max-line-length = 120
; exclude = tests/*
max-complexity = 10
[isort]
profile=black