fix tempest path

the path for tempest tests are incorrect. this ends up breaking
magnum gate magnum already has tempest plugin support

Change-Id: Ie58d6c15b5640bef73662f6427f0b07886f1a859
This commit is contained in:
gordon chung 2016-02-01 17:27:55 -05:00
parent e2437027e7
commit e7ab05a4ae

View File

@ -15,16 +15,18 @@
import os import os
from ceilometer.tests.tempest import config as tempest_config
from tempest import config from tempest import config
from tempest.test_discover import plugins from tempest.test_discover import plugins
import ceilometer
from ceilometer.tests.tempest import config as tempest_config
class CeilometerTempestPlugin(plugins.TempestPlugin): class CeilometerTempestPlugin(plugins.TempestPlugin):
def load_tests(self): def load_tests(self):
base_path = os.path.split(os.path.dirname( base_path = os.path.split(os.path.dirname(
os.path.abspath(__file__)))[0] os.path.abspath(ceilometer.__file__)))[0]
test_dir = "ceilometer/tests/tempest" test_dir = "ceilometer/tests/tempest"
full_test_dir = os.path.join(base_path, test_dir) full_test_dir = os.path.join(base_path, test_dir)
return full_test_dir, base_path return full_test_dir, base_path