From be158ac04746034258442b3dec6fada9740c544b Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Fri, 29 May 2020 14:19:27 +0100 Subject: [PATCH] Fixed queens pep8 - fixed wrong url in constraints url - enforce use of python2.7 because that was the only supported version at that time. Code fails with python3.5 Change-Id: If960eb553add21e8156ba65a8c1ee88799cdac4b Bug: https://bugs.launchpad.net/tripleo/+bug/1881288 --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e7d19596..aba5db3f 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,7 @@ envlist = py27,pep8 usedevelop = True install_command = pip install {opts} {packages} deps = - -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/stable/queens} + -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/queens} -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands= @@ -20,6 +20,7 @@ commands = commands = {posargs} [testenv:pep8] +basepython = python2.7 commands = ./run-flake8 [flake8]