blob: 83ab2e9dfd0aabc05956f4fdaaef1d638ec8f1a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[tox]
envlist = py27, py32, py33, py34, pypy, flake8, checkspelling
[testenv]
downloadcache = {toxworkdir}/cache
deps = -rtest-requirements.txt
commands = coverage erase
{envbindir}/python setup.py develop
coverage run --source=markdown {envbindir}/mdtests {posargs}
coverage report --show-missing
[testenv:flake8]
deps = flake8
commands = flake8 {toxinidir}/markdown {toxinidir}/tests {toxinidir}/setup.py
[testenv:checkspelling]
deps =
commands = {toxinidir}/checkspelling.sh
[flake8]
max-line-length = 119
|