13 lines
243 B
YAML
13 lines
243 B
YAML
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
|
|
script:
|
|
- pep8 pyicloud
|
|
- python setup.py test
|