mirror of https://github.com/peter4431/rq.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
322 B
INI
24 lines
322 B
INI
[tox]
|
|
envlist=py26,py27,py33,py34,py35,pypy,flake8
|
|
|
|
[testenv]
|
|
commands=py.test --cov rq {posargs}
|
|
deps=
|
|
pytest
|
|
pytest-cov
|
|
mock
|
|
|
|
[testenv:py26]
|
|
deps=
|
|
pytest
|
|
pytest-cov
|
|
unittest2
|
|
mock
|
|
|
|
[testenv:flake8]
|
|
basepython = python2.7
|
|
deps =
|
|
flake8
|
|
commands =
|
|
flake8 rq tests --max-line-length=120
|