mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-31 19:26:52 +00:00
29 lines
391 B
INI
29 lines
391 B
INI
[tox]
|
|
minversion=2.3.1
|
|
envlist = py26,py27,py32,py33,py34,py35,flake8
|
|
|
|
[testenv]
|
|
deps =
|
|
mock
|
|
pytest
|
|
commands =
|
|
py.test {posargs}
|
|
|
|
[testenv:venv]
|
|
deps =
|
|
.
|
|
commands = {posargs}
|
|
|
|
[testenv:flake8]
|
|
skipsdist = true
|
|
skip_install = true
|
|
use_develop = false
|
|
deps =
|
|
flake8
|
|
flake8-docstrings
|
|
commands =
|
|
flake8
|
|
|
|
[flake8]
|
|
# Ignore some flake8-docstrings errors
|
|
ignore = D203
|