[ussuri][goal] Drop python 2.7 support
OpenStack is dropping the py2.7 support in ussuri cycle. Fix test_titles.py for changed generator syntax. Ussuri Communtiy-wide goal: https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Change-Id: I334a97d3a0d144b233f51dc864eb56eb6057a064
This commit is contained in:
parent
2dddc9c109
commit
e2fd901625
@ -3,7 +3,7 @@
|
|||||||
- openstack-specs-jobs
|
- openstack-specs-jobs
|
||||||
check:
|
check:
|
||||||
jobs:
|
jobs:
|
||||||
- openstack-tox-py27
|
- openstack-tox-py36
|
||||||
gate:
|
gate:
|
||||||
jobs:
|
jobs:
|
||||||
- openstack-tox-py27
|
- openstack-tox-py36
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
openstackdocstheme>=1.11.0
|
openstackdocstheme>=1.11.0
|
||||||
sphinx!=1.6.6,!=1.6.7,<2.0.0;python_version=='2.7' # BSD
|
|
||||||
sphinx!=1.6.6,!=1.6.7;python_version>='3.4' # BSD
|
sphinx!=1.6.6,!=1.6.7;python_version>='3.4' # BSD
|
||||||
testrepository>=0.0.18
|
testrepository>=0.0.18
|
||||||
testtools>=0.9.34
|
testtools>=0.9.34
|
||||||
|
@ -111,7 +111,7 @@ class TestTitles(testtools.TestCase):
|
|||||||
# Get the current release directory - since we're moving up
|
# Get the current release directory - since we're moving up
|
||||||
# alphabetically, grab the highest name in the spec directory
|
# alphabetically, grab the highest name in the spec directory
|
||||||
generator = os.walk('specs')
|
generator = os.walk('specs')
|
||||||
dirname, subdirs, files = generator.next()
|
dirname, subdirs, files = next(generator)
|
||||||
current_release = max(subdirs)
|
current_release = max(subdirs)
|
||||||
found = False
|
found = False
|
||||||
for dirname, subdirs, files in generator:
|
for dirname, subdirs, files in generator:
|
||||||
|
5
tox.ini
5
tox.ini
@ -1,9 +1,10 @@
|
|||||||
[tox]
|
[tox]
|
||||||
minversion = 1.6
|
minversion = 1.6
|
||||||
envlist = docs,py27
|
envlist = docs,py3
|
||||||
skipsdist = True
|
skipsdist = True
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
|
basepython = python3
|
||||||
usedevelop = True
|
usedevelop = True
|
||||||
install_command = pip install -U {opts} {packages}
|
install_command = pip install -U {opts} {packages}
|
||||||
setenv = VIRTUAL_ENV={envdir}
|
setenv = VIRTUAL_ENV={envdir}
|
||||||
@ -11,11 +12,9 @@ deps = -r{toxinidir}/requirements.txt
|
|||||||
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
||||||
|
|
||||||
[testenv:venv]
|
[testenv:venv]
|
||||||
basepython = python3
|
|
||||||
commands = {posargs}
|
commands = {posargs}
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
basepython = python3
|
|
||||||
commands = python setup.py build_sphinx
|
commands = python setup.py build_sphinx
|
||||||
|
|
||||||
[testenv:spelling]
|
[testenv:spelling]
|
||||||
|
Loading…
Reference in New Issue
Block a user