From 27cb0c96b961ae68bdf5ca4cfa7cf6331249d48c Mon Sep 17 00:00:00 2001 From: zhurong Date: Tue, 18 Jun 2019 14:53:29 +0800 Subject: [PATCH] Update contraints url Change-Id: I4876eb000420bae3ac333fd795f7ee1b0597076a --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f8488a6..558d1fd 100644 --- a/tox.ini +++ b/tox.ini @@ -5,11 +5,12 @@ skipsdist = True [testenv] usedevelop = True -install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/plain/upper-constraints.txt} {opts} {packages} +install_command = pip install {opts} {packages} setenv = VIRTUAL_ENV={envdir} PYTHONWARNINGS=default::DeprecationWarning deps = -r{toxinidir}/test-requirements.txt + -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} commands = python setup.py test --slowest --testr-args='{posargs}' [testenv:pep8]