summaryrefslogtreecommitdiff
path: root/tox.ini
blob: e78ee7d69d1737a91a667edaa6aa1c39805475d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tox]
envlist = py26,py27,py32,py33,pypy,pep8

[testenv]
distribute = False
commands = nosetests -d --with-coverage --cover-inclusive --cover-package cliff []
deps =
    nose
    mock
    coverage

[testenv:pep8]
deps = flake8
commands = flake8 cliff docs/source/conf.py setup.py

[testenv:py26]
basepython=python2.6

[testenv:venv]
commands = {posargs}