mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
13 lines
455 B
YAML
13 lines
455 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "2.7"
|
||
|
env:
|
||
|
- DJANGO=1.7.7
|
||
|
install:
|
||
|
- pip install -r dev/requirements.txt --use-mirrors
|
||
|
script:
|
||
|
- pep8 --exclude=IPy.py --ignore=E501 vrtManager accounts computes console create instances interfaces networks secrets storages
|
||
|
- pyflakes vrtManager accounts computes console create instances interfaces networks secrets storages
|
||
|
- python manage.py migrate
|
||
|
- python manage.py test --settings=webvirtcloud.settings-dev
|