vFW and vDNS support added to azure-plugin
[multicloud/azure.git] / azure / tox.ini
1 [tox]
2 envlist = py27,pep8
3 skipsdist = true
4
5 [tox:jenkins]
6 downloadcache = ~/cache/pip
7
8 [testenv]
9 deps =
10     -r{toxinidir}/requirements.txt
11 commands =
12   /usr/bin/find . -type f -name "*.py[c|o]" -delete
13   pip install {toxinidir}/aria/aria-extension-cloudify/src/aria
14   pip install {toxinidir}/aria/aria-extension-cloudify
15   python manage.py test multicloud_azure
16
17 [testenv:pep8]
18 deps=flake8
19 commands=flake8 --exclude='./aria/**,./*tox*/**'
20
21 [testenv:py27]
22 commands =
23   {[testenv]commands}
24
25 [testenv:cover]
26 setenv=
27   DJANGO_SETTINGS_MODULE = multicloud_azure.settings-cover
28 commands =
29   coverage erase
30   {[testenv]commands}
31   coverage xml -i