Move unit test code under tests/unit/

test.py was previously not in the tests
directory.  This means that downstream packagers
of Cinder have to specifically exclude it from
the main Cinder package (which does not typically
include unit tests).

Move it under the cinder/tests/unit/ dir where it
should be, to clean this up.

Change-Id: I65c50722f5990f540d84fa361b997302bbc935c5
This commit is contained in:
Eric Harney
2020-04-27 10:53:58 -04:00
committed by Brian Rosmaita
parent 07a4dd548c
commit d4eb4a9ba1
271 changed files with 306 additions and 316 deletions

View File

@@ -37,10 +37,10 @@ from cinder import exception
from cinder import objects
from cinder.objects import fields
from cinder import quota
from cinder import test
from cinder.tests import fake_driver
from cinder.tests.unit.api.v2 import fakes as v2_fakes
from cinder.tests.unit import fake_constants as fake
from cinder.tests.unit import test
from cinder.tests.unit import utils
from cinder.volume import rpcapi as volume_rpcapi