summaryrefslogtreecommitdiff
path: root/tox.ini
blob: f58c9cc25ffb379ee215b8b8640d530937de2567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tox]
envlist = py27,py32,style
#py33 -- fails with slots error

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

[testenv:style]
deps = flake8
commands = flake8 clifftablib

[flake8]
ignore = E501,E123
show-source = true