2020-07-29 19:12:42 -04:00
|
|
|
[flake8]
|
2020-07-29 19:13:06 -04:00
|
|
|
max-line-length = 88
|
|
|
|
|
ignore =
|
|
|
|
|
E203 # https://black.readthedocs.io/en/stable/the_black_code_style.html#slices
|
|
|
|
|
W503 # Impossible to obey both W503 and W504
|
2020-07-29 19:12:42 -04:00
|
|
|
|
2015-08-23 23:12:56 -04:00
|
|
|
[tox]
|
2020-01-05 21:32:32 -05:00
|
|
|
envlist = py35,py36,py37,py38
|
2017-02-25 13:23:51 -05:00
|
|
|
toxworkdir={env:TOX_WORK_DIR:.tox}
|
2015-08-23 23:12:56 -04:00
|
|
|
|
|
|
|
|
[testenv]
|
2017-02-25 13:23:51 -05:00
|
|
|
deps=
|
2020-07-25 09:13:30 -04:00
|
|
|
-r requirements.txt
|
|
|
|
|
-r requirements-dev.txt
|
|
|
|
|
commands=python -m pytest
|