From 70f260d3537d788e4efaf4a060fce7f0fc183ed9 Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Wed, 1 Feb 2017 15:14:32 +0100 Subject: [PATCH] Don't run coverage stats when on PyPy --- tox.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tox.ini b/tox.ini index bdc14a128..0fdea11bb 100644 --- a/tox.ini +++ b/tox.ini @@ -54,6 +54,11 @@ commands = pip install -U https://github.com/scrapy/queuelib/archive/master.zip#egg=queuelib py.test --cov=scrapy --cov-report= {posargs:scrapy tests} +[testenv:pypy] +basepython = pypy +commands = + py.test {posargs:scrapy tests} + [testenv:py33] basepython = python3.3 deps =