Updating gitignore; adding travis.yml.
This commit is contained in:
parent
39965ce51a
commit
64ca42d5d7
2 changed files with 16 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -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
14
.travis.yml
Normal 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
|
Loading…
Reference in a new issue