diff options
author | rabi <ramishra@redhat.com> | 2017-03-02 11:48:44 +0530 |
---|---|---|
committer | rabi <ramishra@redhat.com> | 2017-04-03 15:19:39 +0530 |
commit | 88fae590c6ff5d6e39695a5805823a595ef2c82f (patch) | |
tree | 67e3a17076c8428a4a76a0384fbe3e010d20f8f9 /tox.ini | |
parent | 954e475a6a0a12432ec325d7579460fabcf3f40a (diff) | |
download | python-heatclient-88fae590c6ff5d6e39695a5805823a595ef2c82f.tar.gz |
Use upper-constraints for all jobs
Change-Id: I17aae5f4b5c72425d72a3d9ba0a44110e2e6a65c
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -5,19 +5,15 @@ skipsdist = True [testenv] setenv = VIRTUAL_ENV={envdir} + CLIENT_NAME=python-heatclient usedevelop = True -install_command = pip install -U {opts} {packages} +install_command = {toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages} deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = find . -type f -name "*.py[c|o]" -delete python setup.py testr --slowest --testr-args='{posargs}' whitelist_externals = find -[testenv:pypy] -deps = setuptools<3.2 - -r{toxinidir}/requirements.txt - -r{toxinidir}/test-requirements.txt - [testenv:debug] commands = oslo_debug_helper -t heatclient/tests {posargs} @@ -39,6 +35,7 @@ commands = {posargs} [testenv:functional] setenv = OS_TEST_PATH = ./heatclient/tests/functional + CLIENT_NAME=python-heatclient passenv = OS_* [testenv:cover] |