forked from livio/DocDown-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (24 loc) · 670 Bytes
/
tox.ini
File metadata and controls
31 lines (24 loc) · 670 Bytes
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
[tox]
envlist = py27, py34, py35, py36, py37, flake8, coverage
[testenv:coverage]
deps =
-r{toxinidir}/requirements_dev.txt
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/docdown
commands =
coverage erase
coverage run setup.py test {posargs}
coverage report -m
[testenv:flake8]
basepython=python
deps=flake8
commands=flake8 docdown
[testenv]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/docdown
commands =
python setup.py test {posargs}
; If you want to make tox run the tests with the same versions, create a
; requirements.txt with the pinned versions and uncomment the following lines:
deps =
-r{toxinidir}/requirements_dev.txt