summaryrefslogtreecommitdiff
path: root/tempest/hacking
diff options
context:
space:
mode:
authorMatthew Treinish <mtreinish@kortar.org>2016-04-06 19:08:07 -0400
committerMatthew Treinish <mtreinish@kortar.org>2016-06-27 10:22:11 -0400
commitc9cbb0f0ec39cd93fc9634364409c55c9a753f6e (patch)
tree3233b97a52a974f2c2a175442804faf426ffec95 /tempest/hacking
parent0a7053515014a430b687fcccf7f39a97444e063d (diff)
downloadtempest-c9cbb0f0ec39cd93fc9634364409c55c9a753f6e.tar.gz
Remove trove tests from tempest
This commit removes the trove tests from tempest as part of plugin decomposition of tempest. Trove isn't in scope for testing in tempest anymore and tempest testing will be done via a plugin now. Change-Id: I0407e96f628e96bd4d3f7f42cf433b756a5bbaa9
Diffstat (limited to 'tempest/hacking')
-rw-r--r--tempest/hacking/checks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tempest/hacking/checks.py b/tempest/hacking/checks.py
index 09106d156..e2d65851f 100644
--- a/tempest/hacking/checks.py
+++ b/tempest/hacking/checks.py
@@ -19,7 +19,7 @@ import pep8
PYTHON_CLIENTS = ['cinder', 'glance', 'keystone', 'nova', 'swift', 'neutron',
- 'trove', 'ironic', 'savanna', 'heat', 'sahara']
+ 'ironic', 'savanna', 'heat', 'sahara']
PYTHON_CLIENT_RE = re.compile('import (%s)client' % '|'.join(PYTHON_CLIENTS))
TEST_DEFINITION = re.compile(r'^\s*def test.*')