-
Notifications
You must be signed in to change notification settings - Fork 3
/
tox.ini
27 lines (21 loc) · 862 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
# 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]
modules = HttpFileServer.py ./tests/
[tox]
envlist = py27
# Documentation on configuring `flake8` can be found at:
# - http://flake8.readthedocs.org/en/latest/config.html
[flake8]
max-complexity = 12
[testenv]
install_command = pip install --timeout 60 --pre {opts} {packages}
deps = -rrequirements-test.txt
commands =
{envbindir}/flake8 {[base]modules}
{envbindir}/pylint --reports=n {[base]modules}
# pep257 - Ignore D10X, let plint, deal with that docstrings are used.
{envbindir}/pep257 --source --ignore D100,D101,D102,D103 {[base]modules}
{envbindir}/py.test {toxinidir}/tests/