-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
40 lines (28 loc) · 883 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
32
33
34
35
36
37
38
[base]
module = {toxinidir}/muextensions
subjects = {[base]module} {toxinidir}/setup.py {toxinidir}/tests
[tox]
envlist = py35,py36,py37,code-quality
[travis]
python =
3.7: py37,code-quality
[testenv]
install_command = pip install --timeout 60 --pre {opts} {packages}
extras = test
setenv =
COVERAGE_FILE = {toxinidir}/.coverage-{envname}
commands =
{envbindir}/pytest --cov
[testenv:code-quality]
extras =
{[testenv]extras}
ci
commands =
{envbindir}/flake8 {[base]subjects}
{envbindir}/pylint --reports=n --disable=I {[base]subjects}
# pep257 - Ignore D10X, let plint, deal with that docstrings are used.
# {envbindir}/pep257 --source --ignore D100,D101,D102,D103,D203,D204 {[base]subjects}
# Documentation on configuring `flake8` can be found at:
# - http://flake8.readthedocs.org/en/latest/config.html
[flake8]
max-complexity = 10