Rehome unit tests to `tests\unit` folder

Currently only unit tests are executed, but other type could be needed
(functional, for example). All tests in ``os_vif``, ``vif_plug_ovs`` and
``vif_plug_linux_bridge`` are moved to ``tests\unit`` folder.

TrivialFix

Change-Id: I3ea64a407b5fa8b23e0c8e656a55524139d1b79f
This commit is contained in:
Rodolfo Alonso Hernandez 2017-06-22 17:37:36 +01:00
parent 2a09ede8fb
commit 21d7392c79
12 changed files with 4 additions and 4 deletions

View File

View File

@ -13,7 +13,7 @@
import six
from os_vif import exception
from os_vif.tests import base
from os_vif.tests.unit import base
"""Mostly inspired by os-brick's tests."""

View File

@ -12,7 +12,7 @@
from os_vif import exception
from os_vif import objects
from os_vif.tests import base
from os_vif.tests.unit import base
class TestHostInfo(base.TestCase):

View File

@ -18,7 +18,7 @@ import os_vif
from os_vif import exception
from os_vif import objects
from os_vif import plugin
from os_vif.tests import base
from os_vif.tests.unit import base
class DemoPlugin(plugin.PluginBase):

View File

@ -15,7 +15,7 @@ from oslo_versionedobjects import fixture
import os_vif
from os_vif import objects
from os_vif.tests import base
from os_vif.tests.unit import base
class TestVIFS(base.TestCase):

View File