blob: 754e9143bbf8e5cc66dfa867d93754c8bc65a5ea [file] [log] [blame]
language: python
python:
- '2.7'
install:
- pip install pylint
- pip install pep8
- pip install coverage
- pip install factory-boy==1.3.0
- pip install mock
- pip install coveralls
- python setup.py install
script:
- pep8 --ignore=E501 *.py ec2stack
- pylint --rcfile=pylint.rc *.py ec2stack
- nosetests --with-coverage --cover-erase --cover-package=ec2stack --cover-html
after_success:
- coveralls