1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-22 22:43:43 +00:00

Install PyPyDispatcher for PyPy tests

Using https://github.com/lopuhin/pydispatcher, pypy branch.
This is executed as a separate step to avoid changing
default requirements.txt and setup.py. If just added to "deps"
in tox, this install command will be executed as one command
and PyPyDispatcher will not override PyDispatcher.
This commit is contained in:
Konstantin Lopuhin 2017-06-15 13:24:06 +03:00
parent 19ca986aa1
commit b4eb60e527

View File

@ -57,6 +57,7 @@ commands =
[testenv:pypy]
basepython = pypy
commands =
pip install PyPyDispatcher>=2.0.6
py.test {posargs:scrapy tests}
[testenv:py33]