mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
- run lint using latest Python 3.7 - updated env list in tox.ini - added py38-dev - removed py36-dev - moved aiohttp to requirements_test.txt Signed-off-by: Brett Randall <javabrett@gmail.com>
30 lines
605 B
INI
30 lines
605 B
INI
[tox]
|
|
envlist = py34, py35, py36, py37, py38-dev, pypy, lint
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
commands = py.test {posargs}
|
|
deps =
|
|
-rrequirements_test.txt
|
|
|
|
[testenv:lint]
|
|
commands =
|
|
pylint -j0 \
|
|
gunicorn \
|
|
tests/test_arbiter.py \
|
|
tests/test_config.py \
|
|
tests/test_gaiohttp.py \
|
|
tests/test_http.py \
|
|
tests/test_invalid_requests.py \
|
|
tests/test_logger.py \
|
|
tests/test_pidfile.py \
|
|
tests/test_sock.py \
|
|
tests/test_ssl.py \
|
|
tests/test_statsd.py \
|
|
tests/test_systemd.py \
|
|
tests/test_util.py \
|
|
tests/test_valid_requests.py
|
|
deps =
|
|
pylint
|