Now using Travis-CI to automatize the tests, some changes to make tests pass in python3.3

This commit is contained in:
Andrés Reyes Monge 2013-08-24 09:49:42 -06:00
parent 0eccef32bf
commit 5f7b240aa6
3 changed files with 18 additions and 6 deletions

7
.travis.yml Normal file
View file

@ -0,0 +1,7 @@
language: python
python:
- "2.6"
- "2.7"
- "3.3"
install: "python setup.py develop"
script: "python setup.py test"