adding travis ci testing

adding .travis.yml file to enable unit testing run by travis

Signed-off-by: Thiago da Silva <thiago@redhat.com>
This commit is contained in:
Thiago da Silva 2014-04-22 14:15:02 -04:00
parent 404fcd815c
commit cb6332a188
1 changed files with 9 additions and 0 deletions

9
.travis.yml Normal file
View File

@ -0,0 +1,9 @@
language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install: "pip install tox nose"
# command to run tests
script: tox -e py27