forked from mkdocs/mkdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
18 lines (16 loc) · 703 Bytes
/
tox.ini
File metadata and controls
18 lines (16 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tox]
envlist =
{py26,py27,py33,py34}-{unittests,integration,min-req},
flake8
[testenv]
passenv = LANG
deps=
{py26,py27,py33,py34}-{unittests,integration}: -rrequirements/project.txt
{py26,py27,py33,py34}-min-req: -rrequirements/project-min.txt
{py26,py27,py33,py34}-{unittests,min-req}: -rrequirements/test.txt
commands=
{py26,py27,py33,py34}-{unittests,min-req}: {envbindir}/nosetests --with-coverage --cover-package mkdocs mkdocs
{py26,py27,py33,py34}-integration: {envbindir}/python -m mkdocs.tests.integration --output={envtmpdir}/builds
[testenv:flake8]
deps=-rrequirements/test.txt
commands={envbindir}/flake8 mkdocs --max-line-length=119 --exclude=mkdocs/compat.py