summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-01-20 19:26:41 +0000
committerGerrit Code Review <review@openstack.org>2020-01-20 19:26:41 +0000
commit9a3537e0a34a0350ad463e813bf4ba0c66aee25b (patch)
tree66e4f7c848522457936cca58f628619522fab950
parent0e9364fe3ee8163e2e4cc0232024b8c867466bd8 (diff)
parent485fe226ec2839895aa1e648a28422ca8729b27d (diff)
downloadoslo-concurrency-9a3537e0a34a0350ad463e813bf4ba0c66aee25b.tar.gz
Merge "Stop configuring install_command in tox."
-rw-r--r--tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 3e1d776..9507987 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,7 +5,6 @@ ignore_basepython_conflict = True
[testenv]
basepython = python3
-install_command = pip install {opts} {packages}
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/test-requirements.txt
@@ -13,7 +12,7 @@ deps =
# We want to support both vanilla stdlib and eventlet monkey patched
whitelist_externals = env
commands =
- lockutils-wrapper stestr run --slowest {posargs}
+ env TEST_EVENTLET=0 lockutils-wrapper stestr run --slowest {posargs}
env TEST_EVENTLET=1 lockutils-wrapper stestr run --slowest {posargs}
[testenv:pep8]