Files
mkdocs/tox.ini
Waylan Limberg 78d1c01aa4 Add csslint to lint CSS.
Cleaned up the stylesheets as per csslint. Manually ignore adjoining-classes
to avoid more offenders being added later. Completely ignore order-aphabetical
as it occurs a lot and editing the stylesheet would make git blame less
useful in the future.
2016-10-09 20:32:18 -04:00

45 lines
1.2 KiB
INI

[tox]
envlist =
py{26,27,33,34,35}-{unittests,integration,min-req},
flake8, markdown-lint, linkchecker, jshint, csslint
[testenv]
passenv = LANG
deps=
py{26,27,33,34,35,py,py3}-{unittests,integration}: -rrequirements/project.txt
py{26,27,33,34,35,py,py3}-min-req: -rrequirements/project-min.txt
py{26,27,33,34,35,py,py3}-{unittests,min-req}: -rrequirements/test.txt
commands=
py{26,27,33,34,35,py,py3}-{unittests,min-req}: {envbindir}/nosetests --with-coverage --cover-package mkdocs mkdocs
py{26,27,33,34,35,py,py3}-integration: {envpython} -m mkdocs.tests.integration --output={envtmpdir}/builds
[testenv:flake8]
basepython = python2.7
deps=-rrequirements/test.txt
commands={envbindir}/flake8 mkdocs --max-line-length=119 --exclude=mkdocs/compat.py
[testenv:markdown-lint]
whitelist_externals = mdl
passenv = *
commands=mdl README.md CONTRIBUTING.md docs/
[testenv:linkchecker]
basepython = python2.7
passenv=*
deps=
requests<=2.9.0
LinkChecker
commands=
{envpython} -m mkdocs.tests.integration --output={envtmpdir}/builds
linkchecker {envtmpdir}/builds/
[testenv:jshint]
whitelist_externals = jshint
passenv=*
commands=jshint mkdocs/
[testenv:csslint]
whitelist_externals = csslint
passenv=*
commands=csslint mkdocs/