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

[testenv]
deps =
    pytest
    pip==19.1.1
    tomlkit==0.5.3
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