aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
blob: 0a2b462fa3462a2276f9a5019a274225844b99b1 (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
[tox]
envlist = qa
skip_missing_interpreters = True

[testenv]
usedevelop = True
deps =
     flufl.testing
     nose2

[testenv:qa]
basepython = python3
commands =
    python -m flake8 src
deps =
    flake8>3.0
    flufl.testing

[flake8]
enable-extensions = U4
exclude = src/mailman/compat/*.py
hang-closing = True
jobs = 1
max-line-length = 79