diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-02-20 19:35:24 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-02-20 19:35:24 +0100 |
commit | 35e6871c4fdece73962902d10d835ccac0c7e364 (patch) | |
tree | 34195dacaa1f592de8eaab96df73de0b9e4c1a67 /smoketest/scripts/cli/test_interfaces_bonding.py | |
parent | ac8ba16d63fb420ff6cd2f76e1666a329687a9a7 (diff) | |
parent | 5d14a04b6ffbd592e8257d98d71da5acb1bb45a9 (diff) | |
download | vyos-1x-35e6871c4fdece73962902d10d835ccac0c7e364.tar.gz vyos-1x-35e6871c4fdece73962902d10d835ccac0c7e364.zip |
Merge branch 't4203-dhcp' into current
* t4203-dhcp:
smoketest: dhcp: T4203: move testcase to base class
static: T4203: obey interface dhcp default route distance
interface: T4203: prevent DHCP client restart if not necessary
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_bonding.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_bonding.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_bonding.py b/smoketest/scripts/cli/test_interfaces_bonding.py index 1d9a887bd..4f2fe979a 100755 --- a/smoketest/scripts/cli/test_interfaces_bonding.py +++ b/smoketest/scripts/cli/test_interfaces_bonding.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2020 VyOS maintainers and contributors +# Copyright (C) 2020-2022 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -28,6 +28,7 @@ from vyos.util import read_file class BondingInterfaceTest(BasicInterfaceTest.TestCase): @classmethod def setUpClass(cls): + cls._test_dhcp = True cls._test_ip = True cls._test_ipv6 = True cls._test_ipv6_pd = True |