forked from rq/Flask-RQ2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
46 lines (40 loc) · 849 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
39
40
41
42
43
44
45
46
[tox]
envlist =
{py27,py34,py35,py36}-{lowest,latest,devel}
docs
readme
manifest
[travis]
python =
3.5: py35, docs, readme, manifest
[travis:after]
travis = python: 3.6
[testenv]
usedevelop = true
skipsdist = true
deps =
coverage
lowest: Flask==0.10
lowest: click==2.0
latest: Flask
latest: click
devel: git+https://github.com/pallets/flask
devel: git+https://github.com/pallets/click
commands =
coverage erase
coverage run ./setup.py test {posargs}
coverage report
[testenv:docs]
deps =
sphinx
sphinx-readable-theme
-e.[cli]
-e.[script]
commands =
sphinx-build -b html -d {envtmpdir}/doctrees docs docs/_build/html
[testenv:readme]
deps = readme_renderer
commands = python setup.py check -r -s
[testenv:manifest]
deps = check-manifest
commands = check-manifest -v