summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 9a50acd9f71a50e2a7364574b8c55407d5d4bae2 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
[tox]
envlist = py26,py27,py33,py34,scaffolds-26,scaffolds-27,scaffolds-33,scaffolds-34,scaffolds-26-rest-api,scaffolds-27-rest-api,scaffolds-33-rest-api,scaffolds-34-rest-api,pep8

[testenv]
commands={envpython} setup.py test -v {posargs}

[testenv:scaffolds-base]
deps = pep8
        gunicorn
        uwsgi

[testenv:scaffolds-26]
basepython = python2.6
deps = {[testenv:scaffolds-base]deps}
        unittest2
changedir={envdir}/tmp
commands=pecan create testing123
          {envpython} testing123/setup.py install
          {envpython} testing123/setup.py test -q
          pep8 --repeat --show-source testing123/setup.py testing123/testing123
          {envpython} {toxinidir}/pecan/tests/scaffold_builder.py

[testenv:scaffolds-26-rest-api]
basepython = python2.6
deps = {[testenv:scaffolds-base]deps}
        unittest2
changedir={envdir}/tmp
commands=pecan create testing123 rest-api
          {envpython} testing123/setup.py install
          {envpython} testing123/setup.py test -q
          pep8 --repeat --show-source testing123/setup.py testing123/testing123
          {envpython} {toxinidir}/pecan/tests/scaffold_builder.py

[testenv:scaffolds-27]
basepython = python2.7
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123
          {envpython} testing123/setup.py install
          {envpython} testing123/setup.py test -q
          pep8 --repeat --show-source testing123/setup.py testing123/testing123
          {envpython} {toxinidir}/pecan/tests/scaffold_builder.py

[testenv:scaffolds-27-rest-api]
basepython = python2.7
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123 rest-api
          {envpython} testing123/setup.py install
          {envpython} testing123/setup.py test -q
          pep8 --repeat --show-source testing123/setup.py testing123/testing123
          {envpython} {toxinidir}/pecan/tests/scaffold_builder.py

[testenv:scaffolds-33]
basepython = python3.3
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123
          {envpython} testing123/setup.py install
          {envpython} testing123/setup.py test -q
          pep8 --repeat --show-source testing123/setup.py testing123/testing123
          {envpython} {toxinidir}/pecan/tests/scaffold_builder.py

[testenv:scaffolds-33-rest-api]
basepython = python3.3
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123 rest-api
          {envpython} testing123/setup.py install
          {envpython} testing123/setup.py test -q
          pep8 --repeat --show-source testing123/setup.py testing123/testing123
          {envpython} {toxinidir}/pecan/tests/scaffold_builder.py

[testenv:scaffolds-34]
basepython = python3.4
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123
          {envpython} testing123/setup.py install
          {envpython} testing123/setup.py test -q
          pep8 --repeat --show-source testing123/setup.py testing123/testing123
          {envpython} {toxinidir}/pecan/tests/scaffold_builder.py

[testenv:scaffolds-34-rest-api]
basepython = python3.4
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123 rest-api
          {envpython} testing123/setup.py install
          {envpython} testing123/setup.py test -q
          pep8 --repeat --show-source testing123/setup.py testing123/testing123
          {envpython} {toxinidir}/pecan/tests/scaffold_builder.py

[testenv:wsme-stable]
basepython = python2.7
deps = nose
commands = pip install --build {envdir}/build --pre --no-clean --no-use-wheel wsme
            nosetests -v {envdir}/build/wsme/tests/pecantest

[testenv:wsme-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/stackforge/wsme#egg=wsme
            nose
changedir = {envdir}/src/wsme
commands = nosetests -v tests/pecantest

[testenv:ceilometer-stable]
basepython = python2.7
deps = -egit+http://git.openstack.org/openstack/ceilometer@stable/icehouse#egg=ceilometer
changedir = {envdir}/src/ceilometer
commands = tox -e py27 --notest  # ensure a virtualenv is built
           {envdir}/src/ceilometer/.tox/py27/bin/pip install -U {toxinidir}  # install pecan-dev
           tox -e py27

[testenv:ceilometer-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/openstack/ceilometer#egg=ceilometer
changedir = {envdir}/src/ceilometer
commands = tox -e py27 --notest  # ensure a virtualenv is built
           {envdir}/src/ceilometer/.tox/py27/bin/pip install -U {toxinidir}  # install pecan-dev
           tox -e py27

[testenv:ironic-stable]
basepython = python2.7
deps = -egit+http://git.openstack.org/openstack/ironic@stable/icehouse#egg=ironic
changedir = {envdir}/src/ironic
commands = tox -e py27 --notest  # ensure a virtualenv is built
           {envdir}/src/ironic/.tox/py27/bin/pip install -U {toxinidir}  # install pecan-dev
           tox -e py27

[testenv:ironic-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/openstack/ironic#egg=ironic
changedir = {envdir}/src/ironic
commands = tox -e py27 --notest  # ensure a virtualenv is built
           {envdir}/src/ironic/.tox/py27/bin/pip install -U {toxinidir}  # install pecan-dev
           tox -e py27

[testenv:barbican-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/openstack/barbican#egg=barbican
changedir = {envdir}/src/barbican
commands = tox -e py27 --notest  # ensure a virtualenv is built
           {envdir}/src/barbican/.tox/py27/bin/pip install -U {toxinidir}  # install pecan-dev
           tox -e py27

[testenv:storyboard-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/openstack-infra/storyboard#egg=storyboard
changedir = {envdir}/src/storyboard
commands = tox -e py27 --notest  # ensure a virtualenv is built
           {envdir}/src/storyboard/.tox/py27/bin/pip install -U {toxinidir}  # install pecan-dev
           tox -e py27

[testenv:designate-stable]
basepython = python2.7
deps = -egit+http://git.openstack.org/openstack/designate@stable/icehouse#egg=designate
changedir = {envdir}/src/designate
commands = tox -e py27 --notest  # ensure a virtualenv is built
           {envdir}/src/designate/.tox/py27/bin/pip install -U {toxinidir}  # install pecan-dev
           tox -e py27

[testenv:designate-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/openstack/designate#egg=designate
changedir = {envdir}/src/designate
commands = tox -e py27 --notest  # ensure a virtualenv is built
           {envdir}/src/designate/.tox/py27/bin/pip install -U {toxinidir}  # install pecan-dev
           tox -e py27

[testenv:pep8]
deps = pep8
commands = pep8 --repeat --show-source pecan setup.py --ignore=E402

# Generic environment for running commands like packaging
[testenv:venv]
commands={posargs}

[testenv:docs]
deps = sphinx
commands = python setup.py build_sphinx