aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2017-11-08 17:55:54 +0000
committerRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2017-11-10 11:54:26 +0000
commitb80b0fc323d4ec2bca2a9c10acac51176d36ce6f (patch)
treefe8b3db8e79e8776558bbbd3229d15f7b767a074 /tox.ini
parent3cfdda00a291cf911e2948da774929ad23a60452 (diff)
Check requirements against OpenStack requirements
Added a new tox environment to check the project requirements against the OpenStack requirements. The openstack/requirements branch used will depends on Yardstick release development. At this point, Yardstick F release must be compliant with OpenStack Pike release. Change-Id: I77a4cfa4f99674176c3f5711dc1b6787bb400ecf Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 7 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 54ca1fefb..6c568f3fe 100644
--- a/tox.ini
+++ b/tox.ini
@@ -6,7 +6,9 @@ envlist = py27,py3
[testenv]
usedevelop=True
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
-deps = -rrequirements.txt
+deps =
+ -r{toxinidir}/requirements.txt
+ -r{toxinidir}/test-requirements.txt
commands = /bin/bash ./run_tests.sh
whitelist_externals = /bin/bash
@@ -28,3 +30,7 @@ setenv =
ignore = E123,E125,H803
max-line-length = 99
exclude = .venv,.git,.tox,dist,docs,*egg,build
+
+[testenv:os-requirements]
+commands =
+ python {toxinidir}/tools/os-requirements-check.py {envdir}