blob: 1017cd4064841532de368f786d4c5548c1096080 [file] [log] [blame]
[tox]
envlist = py27, py33, py34, py35, py36
[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,