add testing environment for development versions of w3lib and queuelib

This commit is contained in:
Daniel Graña 2013-10-18 16:08:27 -02:00
parent 2e8cc281b0
commit 1f17230f17
3 changed files with 11 additions and 1 deletions

View File

@ -11,6 +11,8 @@ matrix:
env: BUILDENV=precise
- python: "2.7"
env: BUILDENV=latest
- python: "2.7"
env: BUILDENV=trunk
- python: "pypy"
env: BUILDENV=latest
allow_failures:

View File

@ -0,0 +1,3 @@
-r requirements-latest.txt
git+https://github.com/scrapy/w3lib#egg=w3lib
git+https://github.com/scrapy/queuelib#egg=queuelib

View File

@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist = py26, py27, lucid, precise
envlist = py26, py27, lucid, precise, trunk
[testenv]
deps =
@ -22,6 +22,11 @@ basepython = python2.7
deps =
-r{toxinidir}/.travis/requirements-precise.txt
[testenv:trunk]
basepython = python2.7
deps =
-r{toxinidir}/.travis/requirements-trunk.txt
[testenv:windows]
commands =
{toxinidir}/bin/runtests.bat []