blob: 5088e1203155ae1fdbc219ffe2c50a5d81cb1bcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[tox]
envlist = flake8-py2, flake8-py3
skipsdist = True
[testenv:flake8-py2]
basepython = python2
deps=
flake8
commands=flake8 --select=F,E9 --exclude=venv,.tox
[testenv:flake8-py3]
basepython = python3
deps=
flake8
commands=flake8 --select=F,E9 --exclude=venv,.tox
|