summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorzhurong <aaronzhu1121@gmail.com>2020-04-07 04:57:31 -0700
committerzhurong <aaronzhu1121@gmail.com>2020-04-07 04:57:31 -0700
commitc6b90ec56a865a2e587b328bf7929552bf811db5 (patch)
tree2a680b8c8cbfb3430dcffae6bb65f2b4a0daebe8 /tox.ini
parentb50cc037655b3fade67811f0eff00e0352efbae0 (diff)
downloadceilometermiddleware-c6b90ec56a865a2e587b328bf7929552bf811db5.tar.gz
Cleanup py27 support
Make a few cleanups: - Remove python 2.7 stanza from setup.py - Add requires on python >= 3.6 to setup.cfg so that pypi and pip know about the requirement - Remove obsolete sections from setup.cfg: * Wheel is not needed for python 3 only repo * Some other sections are obsolete - Update classifiers - Update requirements, no need for python_version anymore Change-Id: I1db16203ad150c6286c0ca833c01a456981d0a73
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 4 insertions, 8 deletions
diff --git a/tox.ini b/tox.ini
index 13819d0..1691dec 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,28 +2,27 @@
minversion = 1.8
envlist = py37,pypy,pep8,releasenotes
skipsdist = True
+ignore_basepython_conflict = True
[testenv]
+basepython = python3
usedevelop = True
-# NOTE(tonyb): This project has chosen to *NOT* consume upper-constraints.txt
-install_command = pip install -U {opts} {packages}
+install_command = pip install {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
+ -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
commands = stestr run --slowest {posargs}
[testenv:pep8]
-basepython = python3
deps = hacking>=0.12,<0.13
commands = flake8
[testenv:venv]
-basepython = python3
commands = {posargs}
[testenv:cover]
-basepython = python3
setenv =
PYTHON=coverage run --source $project --parallel-mode
commands =
@@ -33,15 +32,12 @@ commands =
coverage xml -o cover/coverage.xml
[testenv:docs]
-basepython = python3
commands = sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html
[testenv:debug]
-basepython = python3
commands = oslo_debug_helper {posargs}
[testenv:releasenotes]
-basepython = python3
commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[flake8]