summaryrefslogtreecommitdiff
path: root/tox.ini
blob: d02b03071327b5895598e216c1efc729738044c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[tox]
minversion = 2.4
envlist =
    isort-check,
    lint,
    py{27,34,35,36,37,py,py3}

[testenv]
deps =
    pytest
extras =
    pipfile
    pyproject
    requirements
commands = py.test -vv -s test_isort.py {posargs}

[testenv:isort-check]
commands = python setup.py isort

[testenv:lint]
deps = flake8==3.5.0
commands = flake8
skip_install = True