File: tox.ini

package info (click to toggle)
python-markdown 2.6.8-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,836 kB
  • ctags: 805
  • sloc: python: 5,417; makefile: 67; sh: 12
file content (18 lines) | stat: -rw-r--r-- 468 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tox]
envlist = py27, py32, py33, py34, pypy, flake8, checkspelling

[testenv]
deps = -rtest-requirements.txt
commands = coverage run --source=markdown {toxinidir}/run-tests.py {posargs}
           coverage report --show-missing

[testenv:flake8]
deps = flake8
commands = flake8 {toxinidir}/markdown {toxinidir}/tests {toxinidir}/setup.py {toxinidir}/run-tests.py

[testenv:checkspelling]
deps =
commands = {toxinidir}/checkspelling.sh

[flake8]
max-line-length = 119