forked from jhermann/pygments-markdown-lexer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
39 lines (31 loc) · 752 Bytes
/
tox.ini
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
37
38
39
# Tox configuration, for details see
#
# http://tox.testrun.org/
#
# $ . .env "--yes" "--develop"
# $ tox
[tox]
envlist = py27, py34, flake8
[testenv]
deps =
-r./test-requirements.txt
-r./requirements.txt
commands =
py.test -c {toxinidir}/setup.cfg --color=yes --cov=pygments_markdown_lexer \
--cov-config=project.d/coverage.cfg --cov-report=term --cov-report=html --cov-report=xml \
{posargs}
[testenv:py3-check]
basepython = python3
deps =
pip>=6.0.8
-r./test-requirements.txt
-r./requirements.txt
commands =
invoke check
[testenv:flake8]
deps =
flake8==2.3.0
pep8==1.6.2
; for now just informational
commands =
flake8 --count --statistics --exit-zero src/pygments_markdown_lexer