Updating gitignore; adding travis.yml.

This commit is contained in:
Adam Coddington 2014-10-05 20:28:42 -07:00
parent 39965ce51a
commit 64ca42d5d7
2 changed files with 16 additions and 0 deletions

2
.gitignore vendored
View file

@ -11,12 +11,14 @@ build
eggs
parts
bin
include
var
sdist
develop-eggs
.installed.cfg
lib
lib64
.Python
# Installer logs
pip-log.txt

14
.travis.yml Normal file
View file

@ -0,0 +1,14 @@
language: python
python:
- 2.6
- 2.7
- 3.3
before_install:
- pip install -r requirements.txt
- pip install pytest mock pretend freezegun
- pip install -e .
- pip install -q pep8
before_script:
- pep8 pyicloud
script:
- python setup.py test