From b4eb60e5270498a64200332587a065ec9978a333 Mon Sep 17 00:00:00 2001 From: Konstantin Lopuhin Date: Thu, 15 Jun 2017 13:24:06 +0300 Subject: [PATCH] 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. --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 6987847f8..c559f1e47 100644 --- a/tox.ini +++ b/tox.ini @@ -57,6 +57,7 @@ commands = [testenv:pypy] basepython = pypy commands = + pip install PyPyDispatcher>=2.0.6 py.test {posargs:scrapy tests} [testenv:py33]