forked from Robpol86/terminaltables
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
96 lines (83 loc) · 2.01 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[general]
author = @Robpol86
license = MIT
name = terminaltables
version = 3.0.0
[tox]
envlist = lint,py{34,27,26}
[testenv]
commands =
python -c "import os, sys; sys.platform == 'win32' and os.system('easy_install pillow')"
py.test --cov-append --cov-report term-missing --cov-report xml --cov {[general]name} --cov-config tox.ini \
{posargs:tests}
deps =
colorama==0.3.7
colorclass==2.2.0
pytest-cov==2.2.1
termcolor==1.1.0
passenv =
WINDIR
setenv =
PYTHON_EGG_CACHE = {envtmpdir}
usedevelop = True
[testenv:py35x64]
basepython = C:\Python35-x64\python.exe
[testenv:py34x64]
basepython = C:\Python34-x64\python.exe
[testenv:py33x64]
basepython = C:\Python33-x64\python.exe
[testenv:py27x64]
basepython = C:\Python27-x64\python.exe
[testenv:py26x64]
basepython = C:\Python26-x64\python.exe
[testenv:lint]
commands =
coverage erase
python setup.py check --strict
python setup.py check --strict -m
python setup.py check --strict -s
python setup.py check_version
flake8 --application-import-names={[general]name},tests
pylint --rcfile=tox.ini setup.py {[general]name}
deps =
coverage==4.2
flake8-docstrings==1.0.2
flake8-import-order==0.9.1
flake8==3.0.3
pep8-naming==0.4.1
pylint==1.6.4
[testenv:docs]
changedir = {toxinidir}/docs
commands =
sphinx-build -a -E -W . _build/html
deps =
Sphinx==1.4.2
sphinx-rtd-theme==0.1.9
[testenv:docsV]
commands =
sphinx-versioning -t -S semver,chrono -e .gitignore -e .nojekyll -e README.rst push gh-pages . docs -- -W
deps =
{[testenv:docs]deps}
sphinxcontrib-versioning==1.0.0
passenv =
HOME
HOSTNAME
SSH_AUTH_SOCK
TRAVIS*
USER
[flake8]
exclude = .tox/*,build/*,docs/*,env/*,get-pip.py
import-order-style = smarkets
max-line-length = 120
statistics = True
[pylint]
ignore = .tox/*,build/*,docs/*,env/*,get-pip.py
max-args = 6
max-line-length = 120
reports = no
disable =
locally-disabled,
too-few-public-methods,
too-many-instance-attributes,
[run]
branch = True