forked from sigmavirus24/github3.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
84 lines (72 loc) · 1.6 KB
/
tox.ini
File metadata and controls
84 lines (72 loc) · 1.6 KB
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
[tox]
envlist = py{27,34,35,36,py},py{27,36}-flake8,doclint,commitlint,docstrings
minversion = 2.5.0
[testenv]
passenv = GH_* APPVEYOR*
pip_pre = False
deps =
requests{env:REQUESTS_VERSION:>=2.0}
mock
pytest>=2.3.5
pytest-xdist
betamax>=0.5.1
betamax_matchers>=0.3.0
pypy,py27: unittest2
commands = py.test {posargs}
[testenv:py27-flake8]
deps =
flake8
commands = flake8 {posargs} github3/ tests/unit/ tests/integration/
[testenv:py36-flake8]
deps =
{[testenv:py27-flake8]deps}
commands = flake8 {posargs} github3/ tests/unit/ tests/integration/
[testenv:notebooks]
basepython = python3.4
deps =
ipython[notebook]
commands = python tests/nbtest.py
[testenv:docstrings]
deps =
flake8
flake8-docstrings
commands = flake8 {posargs} github3/ tests/unit/ tests/integration/
[testenv:release]
usedevelop = false
skipdist = true
deps =
twine >= 1.5.0
wheel
commands =
python setup.py sdist bdist_wheel
twine upload {posargs:--skip-existing} dist/*
[testenv:doclint]
# We need pygments below for doc8
deps =
doc8 >= 0.8.0
proselint >= 0.8.0
pygments
commands =
doc8 docs/source/
{toxinidir}/tests/bin/doclint
[testenv:commitlint]
deps =
gitlint >= 0.8.1
commands =
gitlint
[testenv:docs]
deps =
sphinx>=1.3.0
.
commands =
sphinx-build -E -W -c docs/source/ -b html docs/source/ docs/build/html
[testenv:readme]
deps =
readme_renderer
commands =
python setup.py check -r -s
[pytest]
addopts = -q --durations=10 -d -n4
norecursedirs = *.egg .git .* _*
[doc8]
ignore-path-errors = docs/source/release-notes/1.0.0.rst;D001