add .travis.yml and requirements.txt

master
mutantmonkey 2013-07-20 23:12:13 -07:00
parent 9460fcd8ea
commit 87c57bc9c4
2 changed files with 11 additions and 0 deletions

7
.travis.yml Normal file
View File

@ -0,0 +1,7 @@
language: python
python:
- "3.2"
- "3.3"
install:
- "pip install -r requirements.txt --use-mirrors"
script: nosetests

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
lxml==3.2.1
mock==1.0.1
nose==1.3.0
requests==1.2.3