add travis-ci configuration for multiple build enviroments

This commit is contained in:
Daniel Graña 2012-05-17 09:38:47 -03:00
parent 0d4dccd0fc
commit 7cba9bc274
4 changed files with 30 additions and 0 deletions

15
.travis.yml Normal file
View File

@ -0,0 +1,15 @@
language: python
python:
- 2.6
- 2.7
env:
- BUILDENV=lucid
- BUILDENV=precise
- BUILDENV=latest
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qf python-libxml2
install:
- pip install --use-mirrors -r .travis/requirements-$BUILDENV.txt
script:
- trial scrapy scrapyd

View File

@ -0,0 +1,5 @@
pyOpenSSL
lxml
twisted
boto
.

View File

@ -0,0 +1,5 @@
pyOpenSSL==0.10
lxml==2.2.4
twisted==10.0.0
boto==1.9b
.

View File

@ -0,0 +1,5 @@
pyOpenSSL==0.12
lxml==2.3.2
twisted==11.1.0
boto==2.2.2
.