In order to avoid namespace collisions, turn the kvm test dir into a module and, whenever importing full tests, use the complete namespace. The full namespace might not be pretty, but it is certainly safer, specially executing from autoserv. Signed-off-by: Lucas Meneghel Rodrigues <lmr@xxxxxxxxxx> --- client/tests/kvm/tests/nic_bonding.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) create mode 100644 client/tests/kvm/__init__.py diff --git a/client/tests/kvm/__init__.py b/client/tests/kvm/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/client/tests/kvm/tests/nic_bonding.py b/client/tests/kvm/tests/nic_bonding.py index 692978c..ca9d70a 100644 --- a/client/tests/kvm/tests/nic_bonding.py +++ b/client/tests/kvm/tests/nic_bonding.py @@ -1,6 +1,6 @@ import logging, time, threading from autotest_lib.client.common_lib import error -from tests import file_transfer +from autotest_lib.client.tests.kvm.tests import file_transfer import kvm_test_utils, kvm_utils def run_nic_bonding(test, params, env): -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html