-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtox.ini
More file actions
36 lines (32 loc) · 656 Bytes
/
Copy pathtox.ini
File metadata and controls
36 lines (32 loc) · 656 Bytes
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
[tox]
envlist = py27, py34, style, docs
[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
deps =
versioneer
pytest
coverage
pytest-cov
coveralls
commands =
py.test --cov={envsitepackagesdir}/tendril --cov-report=term --basetemp={envtmpdir}
python tests/coveralls.py
[testenv:style]
deps =
pytest
pytest-flake8
commands =
py.test --flake8 tendril -v
[testenv:docs]
changedir=doc/
deps =
versioneer
sphinx
sphinx-rtd-theme
sphinxcontrib-documentedlist
commands =
sphinx-build -b linkcheck ./ _build/
sphinx-build -b dirhtml ./ _build/
[pytest]
flake8-ignore =
utils/config.py F821