Skip to content

Commit 7c93b97

Browse files
committed
Add support for tox
1 parent 3270cd7 commit 7c93b97

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

‎MANIFEST.in‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include README.rst

‎tox.ini‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[tox]
2+
envlist = py26, py27, py33, py34, pypy, pypy3, flake8
3+
4+
[testenv]
5+
deps =
6+
pytest
7+
pytest-cov
8+
commands =
9+
py.test {posargs}
10+
11+
[testenv:flake8]
12+
basepython = python2.6
13+
deps =
14+
flake8
15+
commands =
16+
flake8 docverter.py test_docverter.py

0 commit comments

Comments
 (0)