blob: 750c38ff751c9223193b652c2bec7bfc78359a31 [file] [log] [blame]
[tox]
envlist = py27, py34
[testenv]
changedir = src
commands = python -m unittest discover
[testenv:py27]
changedir = python2
[flake8]
# fake builtins for python2/*
builtins = basestring, unicode
max-line-length = 90
ignore =
# irrelevant plugins
B3,
DW12,
# code is sometimes better without this
E129,
# consistency with mypy
W504
exclude =
# tests have more relaxed formatting rules
# and its own specific config in .flake8-tests
python2/test_typing.py,
src/test_typing.py,
typing_extensions/src_py2/test_typing_extensions.py,
typing_extensions/src_py3/test_typing_extensions.py,