about summary refs log tree commit diff homepage
path: root/tox.ini
blob: 81dee4df461131d4eee72967f25c77f8ebcd27ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tox]
envlist = py
minversion = 3.3
isolated_build = True

[testenv]
skip_install = True
deps =
    flake8-builtins
    isort
commands =
    flake8
    isort . --check --diff

[flake8]
hang-closing = True
ignore = E129, E226, E228, E701, E704, W503
exclude = .git,__pycache__,.tox,__init__.py

[isort]
balanced_wrapping = True
combine_as_imports = True