Codebase list cinder-tempest-plugin / e0622ed
Drop python 2.7 support and testing Change-Id: I3ff7a714d5fd61edd72e00c7a454c81724844f99 Closes-bug: #1853372 Brian Rosmaita 6 years ago
4 changed file(s) with 9 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
2727 devstack_localrc:
2828 CINDER_ISCSI_HELPER: lioadm
2929 TEMPEST_PLUGINS: /opt/stack/cinder-tempest-plugin
30 USE_PYTHON3: true
3031 devstack_plugins:
3132 barbican: https://opendev.org/openstack/barbican
3233 devstack_services:
1212 License :: OSI Approved :: Apache Software License
1313 Operating System :: POSIX :: Linux
1414 Programming Language :: Python
15 Programming Language :: Python :: 2
16 Programming Language :: Python :: 2.7
1715 Programming Language :: Python :: 3
18 Programming Language :: Python :: 3.5
16 Programming Language :: Python :: 3.6
17 Programming Language :: Python :: 3.7
1918
2019 [files]
2120 packages =
55
66 coverage!=4.4,>=4.0 # Apache-2.0
77 python-subunit>=1.0.0 # Apache-2.0/BSD
8 sphinx!=1.6.6,!=1.6.7,>=1.6.2,<2.0.0;python_version=='2.7' # BSD
9 sphinx!=1.6.6,!=1.6.7,>=1.6.2;python_version>='3.4' # BSD
8 sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
109 oslotest>=3.2.0 # Apache-2.0
1110 testrepository>=0.0.18 # Apache-2.0/BSD
1211 testtools>=2.2.0 # MIT
00 [tox]
1 minversion = 2.0
1 minversion = 3.1.0
22 envlist = pep8
33 skipsdist = True
4 # this allows tox to infer the base python from the environment name
5 # and override any basepython configured in this file
6 ignore_basepython_conflict=true
47
58 [testenv]
9 basepython = python3
610 usedevelop = True
711 install_command = pip install {opts} {packages}
812 setenv =
1317 commands = python setup.py test --slowest --testr-args='{posargs}'
1418
1519 [testenv:pep8]
16 basepython = python3
1720 commands = flake8 {posargs}
1821
1922 [testenv:venv]
20 basepython = python3
2123 commands = {posargs}
2224
2325 [flake8]