-
Notifications
You must be signed in to change notification settings - Fork 4
/
tox.ini
39 lines (29 loc) · 1.05 KB
/
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
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[base]
module = {toxinidir}/plpacker
subjects = {[base]module} {toxinidir}/setup.py {toxinidir}/tests
[tox]
envlist = py34,py36,py27,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