From c70017e029e13e88ab1d1c7b4e071a5803693085 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 18 Jan 2016 17:05:15 +0100 Subject: [PATCH] tox: change default target from MongoDB to MySQL Since we're planning on deprecating non-SQL backends, let's already switch the default on our development side. Change-Id: I1cc47388c7aafcee5e8b5f697ba48a7b67e46c5f Blueprint: only-support-sqlalchemy-in-aodh --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index ff8dc68f6..a89b04a15 100644 --- a/tox.ini +++ b/tox.ini @@ -56,13 +56,13 @@ commands = # gabbi tests without needing to discovery across the entire body of # tests. [testenv:gabbi] -deps = .[mongodb,test] +deps = .[mysql,test] setenv = OS_TEST_PATH=aodh/tests/functional/gabbi commands = - overtest mongodb python setup.py testr --testr-args="{posargs}" + overtest mysql python setup.py testr --testr-args="{posargs}" [testenv:cover] -commands = overtest mongodb python setup.py testr --slowest --coverage --testr-args="{posargs}" +commands = overtest mysql python setup.py testr --slowest --coverage --testr-args="{posargs}" [testenv:pep8] deps = hacking<0.11,>=0.10.0