Move rally.test to tests.test

This will separate totally tests/code base directories

Change-Id: I2089f13d9f7e864ee7bb03ebfd937049c7acb0a5
trello: https://trello.com/c/2pzdYz6Z
This commit is contained in:
Hugh Saunders 2014-01-06 16:24:00 +00:00
parent 438ed18458
commit 1046a985b7
24 changed files with 23 additions and 23 deletions

View File

@ -16,7 +16,7 @@
import mock
from rally.benchmark.scenarios.cinder import volumes
from rally import test
from tests import test
CINDER_VOLUMES = "rally.benchmark.scenarios.cinder.volumes.CinderVolumes"

View File

@ -16,7 +16,7 @@
import mock
from rally.benchmark.scenarios.keystone import basic
from rally import test
from tests import test
KEYSTONE_BASE = "rally.benchmark.scenarios.keystone."

View File

@ -16,7 +16,7 @@
import mock
from rally.benchmark.scenarios.keystone import utils
from rally import test
from tests import test
from tests import fakes

View File

@ -18,8 +18,8 @@ import mock
from rally.benchmark.scenarios.nova import servers
from rally.benchmark import utils as butils
from rally import exceptions as rally_exceptions
from rally import test
from tests import fakes
from tests import test
NOVA_SERVERS = "rally.benchmark.scenarios.nova.servers.NovaServers"

View File

@ -18,8 +18,8 @@ import mock
from rally.benchmark.scenarios.nova import utils
from rally.benchmark import utils as butils
from rally import exceptions as rally_exceptions
from rally import test
from tests import fakes
from tests import test
class NovaScenarioTestCase(test.TestCase):

View File

@ -18,7 +18,7 @@ import mock
from jsonschema import exceptions as schema_exceptions
from rally.benchmark.scenarios import utils
from rally import test
from tests import test
def action_one(self, *args, **kwargs):

View File

@ -17,7 +17,7 @@ import mock
from rally.benchmark import base
from rally import exceptions
from rally import test
from tests import test
class ScenarioTestCase(test.TestCase):

View File

@ -20,8 +20,8 @@ import mock
from rally.benchmark import engine
from rally import consts
from rally import exceptions
from rally import test
from tests import fakes
from tests import test
class TestEngineTestCase(test.TestCase):

View File

@ -18,8 +18,8 @@ import mock
import multiprocessing
from rally.benchmark import runner
from rally import test
from tests import fakes
from tests import test
class MockedPool(object):

View File

@ -17,7 +17,7 @@ import mock
import sys
from rally.cmd import manage
from rally import test
from tests import test
class CmdManageTestCase(test.TestCase):

View File

@ -20,7 +20,7 @@ import uuid
from rally import consts
from rally import db
from rally import exceptions
from rally import test
from tests import test
class TasksTestCase(test.DBTestCase):

View File

@ -19,7 +19,7 @@ import jsonschema
from rally import deploy
from rally.deploy.engines import dummy
from rally import test
from tests import test
class TestDummyDeployEngine(test.TestCase):

View File

@ -21,7 +21,7 @@ import uuid
from rally import consts
from rally import deploy
from rally import exceptions
from rally import test
from tests import test
def make_fake_deployment(**kwargs):

View File

@ -20,7 +20,7 @@ import uuid
from rally import consts
from rally import objects
from rally import test
from tests import test
class DeploymentTestCase(test.TestCase):

View File

@ -20,7 +20,7 @@ import uuid
from rally import consts
from rally import objects
from rally import test
from tests import test
class TaskTestCase(test.TestCase):

View File

@ -21,7 +21,7 @@ import uuid
from rally.benchmark import base
from rally import consts
from rally.orchestrator import api
from rally import test
from tests import test
FAKE_DEPLOY_CONFIG = {

View File

@ -17,7 +17,7 @@ import jsonschema
from rally import serverprovider
from rally.serverprovider.providers import dummy
from rally import test
from tests import test
ProviderFactory = serverprovider.ProviderFactory

View File

@ -20,7 +20,7 @@ import mock
from rally.openstack.common.fixture import mockpatch
from rally.serverprovider.providers import openstack as provider
from rally import test
from tests import test
MOD_NAME = 'rally.serverprovider.providers.openstack'

View File

@ -19,7 +19,7 @@ import mock
from rally import exceptions
from rally import serverprovider
from rally import sshutils
from rally import test
from tests import test
ProviderFactory = serverprovider.ProviderFactory

View File

@ -16,8 +16,8 @@
import mock
from rally import osclients
from rally import test
from tests import fakes
from tests import test
class OSClientsTestCase(test.TestCase):

View File

@ -17,7 +17,7 @@ import mock
from rally import exceptions
from rally import processing
from rally import test
from tests import test
class ProcessingTestCase(test.TestCase):

View File

@ -18,7 +18,7 @@ import os
from rally import exceptions
from rally import sshutils
from rally import test
from tests import test
class SSHTestCase(test.TestCase):

View File

@ -24,8 +24,8 @@ import time
from rally import exceptions
from rally.openstack.common.gettextutils import _
from rally import test
from rally import utils
from tests import test
class ImmutableMixinTestCase(test.TestCase):