mirror of https://github.com/scrapy/scrapy.git
add testing environment for development versions of w3lib and queuelib
This commit is contained in:
parent
2e8cc281b0
commit
1f17230f17
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
-r requirements-latest.txt
|
||||
git+https://github.com/scrapy/w3lib#egg=w3lib
|
||||
git+https://github.com/scrapy/queuelib#egg=queuelib
|
||||
7
tox.ini
7
tox.ini
|
|
@ -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 []
|
||||
|
|
|
|||
Loading…
Reference in New Issue