Travis ci integration (#267)

* Initial travis-ci integration

* Format code base to PEP8
This commit is contained in:
Mike Terzo
2016-07-13 20:59:07 -04:00
committed by Corey Hammerton
parent 0ac64530bf
commit faac5fa1bc
13 changed files with 211 additions and 120 deletions

13
.travis.yml Normal file
View File

@@ -0,0 +1,13 @@
language: python
python:
- "2.6"
- "2.7"
install:
- pip install -r requirements.txt
- pip install -r requirements-test.txt
- pip install -q coverage coveralls --use-wheel
script: py.test --cov=puppetboard --pep8 -v
after_success:
- coveralls