aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: a2965761203e5dfc4204b33aece9347e80949d04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tox]
envlist = py27,py35,flake8

[testenv]
deps = pytest
commands = py.test {posargs}

[testenv:flake8]
deps = flake8
commands = flake8 {posargs} bin/ dotfiles/ tests/

[testenv:release]
deps =
    twine
    wheel
commands =
    python setup.py sdist bdist_wheel
    twine upload {posargs} dist/*