Ondřej Svoboda has uploaded a new change for review. Change subject: networkTests: order VDSM modules after its libraries ......................................................................
networkTests: order VDSM modules after its libraries Change-Id: I15ea057c4fc51a39a64e917fb957793d7f263fe7 Signed-off-by: Ondřej Svoboda <[email protected]> --- M tests/functional/networkTests.py 1 file changed, 7 insertions(+), 7 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/36/37036/1 diff --git a/tests/functional/networkTests.py b/tests/functional/networkTests.py index 455541d..856466c 100644 --- a/tests/functional/networkTests.py +++ b/tests/functional/networkTests.py @@ -33,8 +33,14 @@ _get_dhclient_ifaces) from vdsm.utils import RollbackContext, execCmd, pgrep, running -from hookValidation import ValidatesHook +import caps +from network import errors +from network import tc +from network import api +from network.configurators.ifcfg import Ifcfg from network.sourceroute import StaticSourceRoute + +from hookValidation import ValidatesHook from testlib import (VdsmTestCase as TestCaseBase, namedTemporaryDir, expandPermutations, permutations) from testValidation import (brokentest, slowtest, RequireDummyMod, @@ -45,12 +51,6 @@ import firewall import veth from utils import SUCCESS, VdsProxy - -import caps -from network import errors -from network import tc -from network import api -from network.configurators.ifcfg import Ifcfg NETWORK_NAME = 'test-network' -- To view, visit http://gerrit.ovirt.org/37036 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I15ea057c4fc51a39a64e917fb957793d7f263fe7 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Ondřej Svoboda <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
