summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJulien Danjou <julien@danjou.info>2017-10-17 18:14:01 +0200
committerJulien Danjou <julien@danjou.info>2017-10-26 09:35:14 +0200
commit9323f07f977f320882f8b536c3b54835274826fc (patch)
tree5a9485d4ee46cc94eed7bd79c9051e538919b030 /tox.ini
parent22138b59880c67914d3f7c2f4806c8ea7ed54f3e (diff)
downloadceilometer-9323f07f977f320882f8b536c3b54835274826fc.tar.gz
Remove deprecated storage drivers
Change-Id: I6b262dd440a72f25662b64d938ab9e5328709a97
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini9
1 files changed, 2 insertions, 7 deletions
diff --git a/tox.ini b/tox.ini
index ce95a831..6159a33f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,10 +1,10 @@
[tox]
minversion = 1.8
skipsdist = True
-envlist = py{27,35},{debug,py,py27,py35}-{mongodb,mysql,postgresql,functional},pep8
+envlist = py{27,35},pep8
[testenv]
-deps = .[mongo,mysql,postgresql,gnocchi,zaqar]
+deps = .[gnocchi,zaqar]
-r{toxinidir}/test-requirements.txt
# NOTE(tonyb): This project has chosen to *NOT* consume upper-constraints.txt
install_command = pip install -U {opts} {packages}
@@ -14,11 +14,6 @@ setenv = VIRTUAL_ENV={envdir}
CEILOMETER_TEST_BACKEND={env:CEILOMETER_TEST_BACKEND:none}
CEILOMETER_TEST_DEBUG={env:CEILOMETER_TEST_DEBUG:}
debug: CEILOMETER_TEST_DEBUG=True
- {mongodb,mysql,postgresql,functional}: OS_TEST_PATH=ceilometer/tests/functional/
- mongodb: CEILOMETER_TEST_BACKEND=mongodb
- mysql: CEILOMETER_TEST_BACKEND=mysql
- postgresql: CEILOMETER_TEST_BACKEND=postgresql
- functional: CEILOMETER_TEST_BACKEND={env:CEILOMETER_TEST_BACKEND:mongodb}
passenv = OS_TEST_TIMEOUT OS_STDOUT_CAPTURE OS_STDERR_CAPTURE OS_LOG_CAPTURE CEILOMETER_*
commands =
bash -x {toxinidir}/run-tests.sh "{posargs}"