File: tox.ini

package info (click to toggle)
python-cliff 1.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 424 kB
  • ctags: 299
  • sloc: python: 1,683; makefile: 174; sh: 68
file content (39 lines) | stat: -rw-r--r-- 1,092 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tox]
envlist = py33,py26,py27,pypy,pep8

[testenv]
distribute = False
commands = nosetests -d --with-coverage --cover-inclusive --cover-package cliff []
deps =
    nose
    mock
    coverage

[testenv:pep8]
deps = flake8
commands = flake8 cliff docs/source/conf.py setup.py

[testenv:py26]
basepython=python2.6

[testenv:venv]
deps = -r{toxinidir}/docs/requirements.txt
commands = {posargs}

[testenv:neutronclient-stable]
basepython = python2.7
commands = {toxinidir}/integration-tests/neutronclient-stable.sh {envdir}

[testenv:neutronclient-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack/python-neutronclient#egg=neutronclient
commands = {toxinidir}/integration-tests/neutronclient-tip.sh {envdir}

[testenv:openstackclient-stable]
basepython = python2.7
commands = {toxinidir}/integration-tests/openstackclient-stable.sh {envdir}

[testenv:openstackclient-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack/python-openstackclient#egg=openstackclient
commands = {toxinidir}/integration-tests/openstackclient-tip.sh {envdir}